Hi, I have the grid inside a table. The columns are resizeable. If i drag the column beyond the width of the table i want horizontal scroll bars to appear. Please tell me how to do it.
Grid itself has not ability to track resize of other DOM element ( it can react on window resize but not on simple DOM elements)
You can has some code which will ajust grid to necessary size
function call_after_column_resize(){
grid.entBox.style.width=new_column_width;
grid.setSizes();
}