I'm using SmartGWT 2.4 on Crome Browser.
There is a strange problem with behavior of the List Grid.
When the grid loads, the rows are displayed in the single line. Even if any column contains data in multiple line, the grid automatically adjust the height of the row.
However, when we freeze upon a column, the rows will not align in a straight line. Attached screenshot (ScreenShot-1, 2 and 3) illustrates the problem.
Is there a way to fix this? so that rows are aligned in straight line even after freeze?
Below is the sample code.
There is a strange problem with behavior of the List Grid.
When the grid loads, the rows are displayed in the single line. Even if any column contains data in multiple line, the grid automatically adjust the height of the row.
However, when we freeze upon a column, the rows will not align in a straight line. Attached screenshot (ScreenShot-1, 2 and 3) illustrates the problem.
Is there a way to fix this? so that rows are aligned in straight line even after freeze?
Below is the sample code.
Code:
ListGrid toolsGrid = new ListGrid(); toolsGrid.setDataSource(ds); toolsGrid.setHeaderHeight(25); toolsGrid.setWidth100(); toolsGrid.setCanResizeFields(true); toolsGrid.setCanHover(true); toolsGrid.setGroupByMaxRecords(4000); toolsGrid.setShowFilterEditor(true); toolsGrid.setShowGridSummary(true); toolsGrid.setShowGroupSummary(true); toolsGrid.setShowGroupSummaryInHeader(true);
Comment