Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

Freeze column in ListGrid with header span

$
0
0
Hello,

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}
    ]
})

You can see that I can freeze SKU, units and description but not itemName nor category.

Is that on purpose?

Viewing all articles
Browse latest Browse all 4756

Trending Articles