a wide table in tab,but No horizontal scroll bar.how to do?

var bGrid = tab.attachGrid();
bGrid.enableAutoWidth(true);
bGrid.init();
//grid.setImagePath("…/…/…/dhtmlxGrid/codebase/imgs/");
bGrid.loadXML(xmlUrl);

the Grid’s width is 1000px,but No horizontal scroll bar.

how to do ?

This is result of enableAutoWidth
In such mode grid will NOT have inner scroll ( it will resize self to fit all columns ) - just comment that line to fix the issue.

:smiley:
Thankyou for your answer