Announcement

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

    frozen colums with wrapCells: true and fixedRecordHeights: false not shown correctly

    In the ListGrid with wrapCells: true and fixedRecordHeights: false:

    if the height of frozen columns is different of height of other columns, the table is not shown correctly: frozen cells has different height then cells that are not frozen.

    For example you can use the Dynaic Freeze example at http://www.smartclient.com/#dynamicFreeze, add 2 properties to JS source:

    Code:
    isc.ListGrid.create({
        ID: "supplyList",
        width:500, height:224,
        dataSource: supplyItem,
        canFreezeFields: true,
        autoFetchData: true,
        fixedRecordHeights: false,       //<== add this ...
        wrapCells: true,                 //<== ... and this
        fields:[
            {name:"itemName", width:150},
            {name:"category", width:100},
            {name:"SKU", width:100},
            {name:"units", width:80},
            {name:"description", width:250}
        ]
    })
    click on "Try It" button and click on "Freeze SKU" on the head context menu.

    You can see that the frozen SKU column has different height then remaining columns.


    Borut
    Last edited by borutr; 6 Aug 2009, 23:38. Reason: corrected formatting

    #2
    The docs for canFreezeFields indicate that these two features don't work together. If you need them to, consider Feature Sponsorship.

    Note that multiline but fixed height rows do work with frozen fields.

    Comment

    Working...
    X