SmartClient Version: SNAPSHOT_v12.0d_2017-09-19/AllModules Development Only (built 2017-09-19)
SmartClient Version: v11.1p_2017-09-19/AllModules Development Only (built 2017-09-19)
Chrome, FF and Safari on OSX
Hello, please modify the #dynamicFreezeFS sample like this:
Then open and close the group, you'll see a strange effect like in the video: https://www.youtube.com/watch?v=xrMi27a6RyM
It seems a little 'slow' even without selectionAppearance: "checkbox", but maybe it's just me.
SmartClient Version: v11.1p_2017-09-19/AllModules Development Only (built 2017-09-19)
Chrome, FF and Safari on OSX
Hello, please modify the #dynamicFreezeFS sample like this:
Code:
isc.ListGrid.create({
ID: "supplyList",
width:550, height:"100%",
dataSource: supplyItem, groupByMaxRecords:5000,
groupByField:"category",
selectionAppearance: "checkbox",
canFreezeFields:true,
autoFetchData: true,
initialCriteria:{category:"Display Books"},
fields:[
{name:"itemName", width:150},
{name:"category", width:100},
{name:"SKU", width:100},
{name:"units", width:80},
{name:"description", width:250}
]
})
It seems a little 'slow' even without selectionAppearance: "checkbox", but maybe it's just me.
Comment