Hi,
I am converting existing html tables to grid. The last column is partly hidden by the vertical scrollbar. I am using splitAt to freeze the first column. I tried to specify the width of each column in % and numbers. But still, the last column is partly hidden by the vertical scrollbar.
var liGrid= new dhtmlXGridFromTable(‘liTable’);
doInitGridLITable();
function doInitGridLITable(){
liGrid.setImagePath("/StandardsWeb/includes/dhtmlx/dhtmlxGrid/codebase/imgs/");
liGrid.setInitWidths("100,100,100,100,100,100,100,100,100");
liGrid.setColAlign("left,left,left,left,left,left,left,right,right");
liGrid.enableRowsHover(true,"grid_hover");
liGrid.enableAlterCss("even_row","odd_row");
liGrid.setSkin("merlin");
}
function beforeInit(){
liTable.splitAt("1");
}
Please help.
Thanks!