Announcement

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

    TreeGrid bugs on demo site

    Replace code in this demo with my example below
    http://www-demos.smartclient.com/iso...tml#freezeTree

    Bug 1: resizeFieldsInRealTime: false does not take effect with autoFitWidthApproach: "both" and the columns resize in real time (which is a performance problem for us). Seems that resizeFieldsInRealTime: false only takes effect when autoFitWidthApproach: "value"

    Bug 2: in the same example when grid loads - fields do not auto fit until I expand root node

    Here is an example:
    Code:
    isc.TreeGrid.create({
        ID: "employeeTree",
        width:500, height:224,
        dataSource: employees,
        autoFetchData:true,
        canFreezeFields:true,
        canReparentNodes:true,
        fields:[
            {name:"Name"},
            
            {name:"Email"},
            {name:"Job"}
        ],
    
    
    	autoFitFieldWidths: true,
    	autoFitFieldsFillViewport: false,
    	resizeFieldsInRealTime: false,
    	autoFitWidthApproach: "both"
    
    });
    Last edited by jumple; 3 Dec 2014, 09:58.

    #2
    Is there any progress on this?

    Comment


      #3
      We've made some changes to address these issues - please try the next nightly build (dated Dec 30 or above), 10.0p or 10.1d branch.

      Regards
      Isomorphic Software

      Comment


        #4
        This is great, thanks a lot, works as expected

        Comment

        Working...
        X