In the ListGrid with wrapCells: true and fixedRecordHeights: false:
if the height of frozen columns is different of height of other columns, the table is not shown correctly: frozen cells has different height then cells that are not frozen.
For example you can use the Dynaic Freeze example at http://www.smartclient.com/#dynamicFreeze, add 2 properties to JS source:
click on "Try It" button and click on "Freeze SKU" on the head context menu.
You can see that the frozen SKU column has different height then remaining columns.
Borut
if the height of frozen columns is different of height of other columns, the table is not shown correctly: frozen cells has different height then cells that are not frozen.
For example you can use the Dynaic Freeze example at http://www.smartclient.com/#dynamicFreeze, add 2 properties to JS source:
Code:
isc.ListGrid.create({
ID: "supplyList",
width:500, height:224,
dataSource: supplyItem,
canFreezeFields: true,
autoFetchData: true,
fixedRecordHeights: false, //<== add this ...
wrapCells: true, //<== ... and this
fields:[
{name:"itemName", width:150},
{name:"category", width:100},
{name:"SKU", width:100},
{name:"units", width:80},
{name:"description", width:250}
]
})
You can see that the frozen SKU column has different height then remaining columns.
Borut
Comment