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
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"}
]
});