FixedAreaResizeEnabled: Boolean;
The FixedAreaResizeEnabled property determines whether cells in the fixed area can be resized.
Use JSON or the setFixedAreaResizeEnabled method to set the property value and the getFixedAreaResizeEnabled method to get the property value.
If the property is set to True (default), cells in the fixed area can be resized, otherwise they cannot.
The fixed area is the collection of cells positioned at the intersection of fixed rows and fixed columns in the table. More detailed information on fixed rows and columns can be found in pages with description of the TabSheetSettings.FixedRow and TabSheetSettings.FixedColumn properties respectively.
To execute the example, the HTML page must contain the TabSheet component named tabSheet (see Example of Creating the TabSheet Component).
// Set outmost fixed row
tabSheet.setFixedRow(0);
// Disable cell resize in fixed area
tabSheet.setFixedAreaResizeEnabled(false);
After executing the example it is not available to resize cells in the first row.
See also: