Run the sample below. Freeze "Category" column. The column will move to the left. Now unfreeze the column. The column stays where it was moved. Is there any way to move it back to where it was originally before freezing?
Code:
found in sample - isomorphic/system/reference/SmartClient_Explorer.html#simpleFreeze isc.ListGrid.create({ ID: "supplyList", width:500, height:224, dataSource: supplyItem, autoFetchData: true, fields:[ {name:"itemName",width:150}, {name:"category", width:100}, {name:"SKU", width:100}, {name:"units", width:80}, {name:"description", width:250} ] })
Comment