Column uneditable

How can we make particular column(cells of that column) uneditable and cell also should not be right clickable?

You may use the beforeEditStart event to block the edit operation with the “return false”:
https://docs.dhtmlx.com/suite/grid__api__grid_beforeeditstart_event.html
and use your own logic in the rightClick event:
https://docs.dhtmlx.com/suite/grid__api__grid_cellrightclick_event.html

1 Like

is there any API to add column to right and left of a specific column in grid of suite 7 & above?

If you aer talking about the dhx.Grid component you may try to use the setColumns() method to apply a new set of columns to your grid:
https://docs.dhtmlx.com/suite/grid__api__grid_setcolumns_method.html