EnableTabSheetActions : Boolean;
The EnableTabSheetActions property determines whether table elements can be selected.
Use JSON or the setEnableTabSheetActions method to set the property value and the getEnableTabSheetActions method to get the property value.
Executing the example requires that HTML page contains the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component).
// Get workbook data area var dataView = workbookBox.getDataView(); // Get workbook table var lanerBoxView = dataView.getGridView(); // Prohibit selection of table elements lanerBoxView.setEnableTabSheetActions(false);
After executing the example selection of table elements is prohibited.
See also: