Vertical scrollbar width

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!

Try to use auto width mode docs.dhtmlx.com/doku.php?id=dhtm … eautowidth

myGrid.enableAutoWidth(true) also doesnt work. The vertical scrollbar appears to be a part of the last column and it hides the last few characters of the last column. When I expand the column and the horizontal scrollbar appears, it is fine. But on the initial load, a few characters in the last column are hidden.

Please advise.

Please open ticket at support.dhtmlx.com/ and provide us any kind of demo where issue can be reconstructed