datatable: "editable" on column / cell level

Hi,

i have a datatable where some columns / cells may be editable or not depending on the value of other cells. What I would like to have is a config based formular for the editor similar to the “cssFormat” property.

Do you have a suggestion how to realize that in a simple and flexible way?

You can put a necessary logic in onBeforeEditStart event and from this event set editor property for the related column

this.getColumnConfig(column).editor = editor_is_allowed(row, column) ? "text" :"";

Thanks, I will try.