Is is possible to remove "<div><img blank.gif></div>" which is added to every cell in ListGrid?
Here is html code of sample cell:
My ListGrid parameters are:
SmartClient Version: SNAPSHOT_v8.3d_2012-05-28/LGPL Development Only (built 2012-05-28)
FF 11, IE 8
Here is html code of sample cell:
Code:
<td class="tallCell" height="" align="left" style="height: 27px; width: 125px; overflow: hidden;">
<div style="overflow: hidden; width: 121px;" cellclipdiv="true" role="presentation">
cell data
<div>
<img height="2" border="0" width="1" align="TEXTTOP" suppress="TRUE" src="http://localhost/seed/pages/seed/sc/skins/Enterprise/images/blank.gif">
</div>
</div>
</td>
Code:
this.setWidth100();
this.setHeight100();
this.setMinFieldWidth(70);
this.setGroupStartOpen(GroupStartOpen.ALL);
this.setShowHeaderContextMenu(false);
this.setShowRollOverCanvas(false);
this.setCanFreezeFields(false);
this.setSelectionType(SelectionStyle.NONE);
this.setWrapCells(true);
this.setScrollRedrawDelay(50);
this.setHeaderHeight(40);
this.setAutoFitWidthApproach(AutoFitWidthApproach.BOTH);
this.setHeaderSpanHeight(20);
this.setCanDragSelect(false);
this.setFastCellUpdates(false);
this.setGroupByMaxRecords(10000);
this.setDataFetchMode(FetchMode.LOCAL);
this.setEnforceVClipping(true);
this.setShowAllRecords(false);
this.setDrawAheadRatio(1000f);
this.setResizeFieldsInRealTime(false);
this.setCanEdit(false);
this.setAlternateRecordStyles(false);
this.setCanReorderFields(false);
this.setCanReorderRecords(false);
this.setCellHeight(25);
this.setCanSort(false);
this.setFixedRecordHeights(true);
this.setShowRecordComponents(true);
this.setShowRecordComponentsByCell(true);
this.setRecordComponentPosition(EmbeddedPosition.WITHIN);
this.setRecordComponentPoolingMode(RecordComponentPoolingMode.DATA);
this.setShowTreeColumnPicker(false);
FF 11, IE 8
Comment