Hi,
I'm customizing my ListGrid subclass this way:
The problem I have is that the "grouptest" class name I have configured for the group nodes does not appear in the IE8 HTML page.
Here is the group row in IE10 (it does also work on FireFox and Chrome)
Here is the IE8 one:
Thanks,
Thomas
I'm customizing my ListGrid subclass this way:
Code:
this.setGroupByField("BUNIT_NAME"); this.setFixedRecordHeights(false); this.setGroupStartOpen(GroupStartOpen.ALL); this.setCanCollapseGroup(false); this.setGroupNodeStyle("grouptest"); this.setWrapCells(false); this.setAlternateRecordStyles(false); this.indentFirstColumn(20);
Here is the group row in IE10 (it does also work on FireFox and Chrome)
Code:
<tr role="listitem" aria-posinset="6" aria-setsize="7"> <td align="left" class="grouptest" style="height: 16px; overflow: hidden; white-space: nowrap;" colspan="1"> <span style='width: 1px; height: 1px; vertical-align: text-top; display: inline-block; background-image: url("http://127.0.0.1:8888/application/sc/skins/Graphite/images/blank.gif"); background-size: 100% 100%;'></span> <span style='width: 3px; height: 1px; vertical-align: text-top; display: inline-block; background-image: url("http://127.0.0.1:8888/application/sc/skins/Graphite/images/blank.gif"); background-size: 100% 100%;'></span> My BU </td> </tr>
Code:
<tr role="listitem"> <td align="left" style="height: 18px; overflow: hidden; white-space: nowrap;" colSpan="1"> <img width="1" height="1" align="textTop" src="http://127.0.0.1:8888/application/sc/skins/Graphite/images/blank.gif" border="0" suppress="TRUE"/> <img width="3" height="1" align="textTop" src="http://127.0.0.1:8888/application/sc/skins/Graphite/images/blank.gif" border="0" suppress="TRUE"/> myBU </td> </tr>
Thomas
Comment