Hello,
I'm using SmartClient_v91p_2014-09-30_PowerEdition and I can't freeze columns when having header span.
For example:
You can see that I can freeze SKU, units and description but not itemName nor category.
Is that on purpose?
I'm using SmartClient_v91p_2014-09-30_PowerEdition and I can't freeze columns when having header span.
For example:
Code:
isc.ListGrid.create({
ID: "supplyList",
width:550, height:224,
dataSource: supplyItem,
canFreezeFields:true,
autoFetchData: true,
headerSpans:[ {'title' : "simple", 'fields' : ['itemName','category']}],
fields:[
{name:"itemName", width:150},
{name:"category", width:100},
{name:"SKU", width:100},
{name:"units", width:80},
{name:"description", width:250}
]
})Is that on purpose?