Check documentation for the latest version of dhtmlxSuite enableEditTabOnly DHTMLX Docs

enableEditTabOnly

enables/disables the mode when readonly cell is not available with tab

void enableEditTabOnly(boolean state);
statebooleantrue/false to enable/disable the mode

Example

//enable mode when readonly cell is not available with tab
myTreeGrid.enableEditTabOnly(true);
//disable mode when readonly cell is not available with tab
myTreeGrid.enableEditTabOnly(false);

Back to top