Announcement

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

    TreeGrid header width after resizing columns

    Hello,

    We have an issue with the TreeGrid Header.When we manually resize a column by expanding the column header, the right most column headers are disappearing on the right (see capture.JPG). This only happens when both "bodyOverflow" and "overflow" are set to be "visible".

    We are using SmartClient_v82p_2012-10-09_PowerEdition and this issue can also be reproduced on SmartClient_v83p_2013-02-04_PowerEdition on IE9 and Firefox 12.

    Thanks a lot for your help.

    Code:
    isc.TreeGrid.create({
    ID:"Tree3",bodyOverflow:"visible",overflow:"visible", height: 400, width: 600,
    leaveScrollbarGap:false, showHeader:true, fields:
        [{title:"Column 1"},
         {title:"Column 2"},
         {title:"Column 3"},
         {title:"Column 4"},
         {title:"Column 5"},
         {title:"Column 6", align:"center"}
        ]
    });
    Attached Files

    #2
    Thanks for the test case. We'll look into why this is behaving in this manner.
    However you should be able to get the desired behavior by setting "autoFitData" to "horizontal".
    Please let us know if that doesn't get things working for you

    Regards
    Isomorphic Software

    Comment


      #3
      Thanks for your help! It works in our case.

      Comment

      Working...
      X