Smartclient version: v10.0p_2015-06-17/Enterprise Deployment
We have recently upgraded from 8.2 to 10.0. After upgrading to 10.0, for some of the records of a column in ListGrid, we are displaying an icon which is not coming in IE8 but works fine for every other browser.
Please refer to "Icons missing in IE8.jpg" and "Icons displaying in firefox.jpg" files.
For this ListGrid we have overridden the getBaseStyle method to provide a custom style for some of the ListGrid records of a column. Below is the code for that
if (this.getFieldName(colNum) == 'FileName')
{
return "replayedCell";
}
else {
return this.Super("getBaseStyle",arguments);
}
In above code , "replayedCell" is the customized style which we are using to display the icons for some records of a column. Below is the css code we have added in the skin_styles.css file for "replayedCell".
.replayedCell {
padding-left: 2em;
background-image: url(images/FGimages/Replayed_16.png);
background-repeat: no-repeat;
background-position: 0 -2;
font-family: Verdana, Bitstream Vera Sans, sans-serif;
font-size: 11px;
}
Replayed_16.png is the image which we are displaying in ListGrid. But this image is not getting displayed in the Internet Explorer 8.
Can you please take a look into this issue?
We have recently upgraded from 8.2 to 10.0. After upgrading to 10.0, for some of the records of a column in ListGrid, we are displaying an icon which is not coming in IE8 but works fine for every other browser.
Please refer to "Icons missing in IE8.jpg" and "Icons displaying in firefox.jpg" files.
For this ListGrid we have overridden the getBaseStyle method to provide a custom style for some of the ListGrid records of a column. Below is the code for that
if (this.getFieldName(colNum) == 'FileName')
{
return "replayedCell";
}
else {
return this.Super("getBaseStyle",arguments);
}
In above code , "replayedCell" is the customized style which we are using to display the icons for some records of a column. Below is the css code we have added in the skin_styles.css file for "replayedCell".
.replayedCell {
padding-left: 2em;
background-image: url(images/FGimages/Replayed_16.png);
background-repeat: no-repeat;
background-position: 0 -2;
font-family: Verdana, Bitstream Vera Sans, sans-serif;
font-size: 11px;
}
Replayed_16.png is the image which we are displaying in ListGrid. But this image is not getting displayed in the Internet Explorer 8.
Can you please take a look into this issue?
Comment