Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

Smart GWT V4.0, IE11

$
0
0
Issue:
We are using a list grid to show some data and have one field in the list grid which has Boolean true or false value. We have a Data-Source attached with this item to.
The functionality is that Boolean field have to show two different image depending on the true or false value of the field .


The code is given below :
ListGrid gridField = new ListGrid();
gridField.setBooleanTrueImage(/image/custom/user.png);
gridField.setBooleanFalseImage((/image/custom/blank.png);
DataSource dsource = DataSource.get(datasource name);
gridField.setDataSource(ds);


But this is not working in IE11. The image is not showing and by default it is display as read only check box field as JavaDoc said. It is working in IE8.
We are using GWT 2.6.1(using gwt-servelet.jar,gwt-dev.jar), Smart GWT 4.0 (smartgwt.jar, smartgwtpro.jar),and Internet explorer 11.
Previously it was working fine in IE8, IE9 with GWT 2.3.0, smart gwt 3.0. The above codes are running fine in IE8. We are upgrading the above mentioned jars to run this application in IE11.

Note: if anyone need any information further, please reply.

Viewing all articles
Browse latest Browse all 4756

Trending Articles