Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Freeze column in ListGrid with header span

    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?

    #2
    Yes this is on purpose. There's no way to have a header span span both frozen and unfrozen fields.
    You can right click on the span itself and freeze the whole span (freeze all the fields in it)

    Regards
    Isomorphic Software

    Comment

    Working...
    X