Hi Isomorphic
The title of the last column of my listgrid is getting truncated due to the filter/sort icon at the right end of the grid. I find this issue in Firefox 12.0 and Internet 8.0. I have tried this in release v9.0p_2014-02-06/Enterprise Deployment 2014-02-06.
I have the following properties set on my listgrid
As seen in the image the last column(rank)is truncated. If I select the AutoFitAllColumns option on the right click the display corrects. Is this a bug or is there a property I need to set to make it display properly when the grid loads initially?
The title of the last column of my listgrid is getting truncated due to the filter/sort icon at the right end of the grid. I find this issue in Firefox 12.0 and Internet 8.0. I have tried this in release v9.0p_2014-02-06/Enterprise Deployment 2014-02-06.
I have the following properties set on my listgrid
Code:
listGrid.setWidth(500); listGrid.setHeight(500); listGrid.setShowAllRecords(true); listGrid.setShowFilterEditor(true); listGrid.setAutoFitFieldWidths(true); listGrid.setAutoFitFieldsFillViewport(false); listGrid.setAutoFitWidthApproach(AutoFitWidthApproach.BOTH); listGrid.setCanResizeFields(true); listGrid.setSortField("test1"); listGrid.setSortDirection(SortDirection.DESCENDING); listGrid.setFields(DummyDataStudents.getFields()); listGrid.setData(DummyDataStudents.getRecords());
Comment