using '*' doesnt result in filling full grid width

Hi!



I’ve got following problem



my grid (3 columns) is setup from html by this code









































Number Title In words
1 Record One
2 Record Two








What I wanted it to result in, was 3 column table auto adjusting itself in height to content, and filled in width in 100%. The problem is, there is small (around 16px wide) space to the right of last column that breaks whole result. It is even visible in dhtmlx grid samples. At least in FF 2. How can I get rid of this ?



setSizes just update current view of grid, to set necessary width of columns next initialization code need to be used

    var abc_grid = new dhtmlXGridFromTable(‘abc’);
    abc_grid.enableAutoHeight(true);
    abc_grid.setInitWidths(“100,100,*”);
    abc_grid.setSizes();
    abc_grid.enableResizing(‘false,false,false’);