DHTLX Grid : Want to lock First and last column movability

Hi,

I want to lock the First and Last Column movability in the DHTMLX Grid.

Means they shud not be resizable.

How to do this ?

Means they shud not be resizable.
You can block ability to resize column by
    grid.enableResizing(“false,true,true,true,false”); // value for each column, true - allow resize, false - deny

But if you want to lock the ability to scroll as well - it is not possible, grid allows only one splited zone.

Hi,
How to decide the movability(resizing) of the newly inserted column (using insertColumn) ???

You can call grid.enableResizing with updated list of values in any moment of time, so just call it again after adding new column