There is a bug when total width of columns is less than total width of grid.
If I click on empty space between the last column header and the sort button at the right edge - the first un-frozen column header gets highlighted
Even when I first sort by Name column and then click that blank space
Just paste my code example below to your demo here
http://www-demos.smartclient.com/iso...ise#freezeTree
If I click on empty space between the last column header and the sort button at the right edge - the first un-frozen column header gets highlighted
Even when I first sort by Name column and then click that blank space
Just paste my code example below to your demo here
http://www-demos.smartclient.com/iso...ise#freezeTree
Code:
isc.TreeGrid.create({
width:500, height:224,
dataSource: employees,
autoFetchData:true,
fields:[
{name:"Name", frozen:true, width:150},
{name:"Email", width:150},
{name:"Job", width:150}
]
});
Comment