enables/disables the mode when readonly cell is not available with tab
state | boolean | true/false to enable/disable the mode |
//enable mode when readonly cell is not available with tab
myGrid.enableEditTabOnly(true);
//disable mode when readonly cell is not available with tab
myGrid.enableEditTabOnly(false);
Back to top