Announcement

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

    [Bug] Elipsis on frozen column of TreeGrid

    There is a bug in demo site as well as in version SmartClient_v100p_2014-12-18_LGPL

    With settings autoFitFieldWidths: true, autoFitWidthApproach: "both", the tree column does not show ellipsis (...) when resized smaller.

    Also with the same settings it seems that on initial load only headers are auto-fitted, not the values, but expanding a record finally auto-fits everything properly

    Both issues can be seen here by replacing code with sample below

    http://www-demos.smartclient.com/iso...tml#freezeTree

    Code:
    isc.TreeGrid.create({
    	ID: "employeeTree",
    	width:500, height:224,
    	dataSource: employees,
    	autoFetchData:true,
    	canFreezeFields:true,
    	canReparentNodes:true,
    
    	autoFitFieldWidths: true,
    	autoFitWidthApproach: "both",
    
    	fields:[
    		{name:"Name", frozen:true},
    
    		{name:"Email"},
    		{name:"Job"},
    		{name:"EmployeeType"},
    		{name:"EmployeeStatus"},
    		{name:"Salary"},
    		{name:"Gender"},
    		{name:"MaritalStatus"}
    	]
    });

    #2
    Thanks for the clear test case. This is fixed for tomorrow's builds of 9.1 and up.

    Comment


      #3
      Thanks for the fix

      Comment

      Working...
      X