resizeRow
enables/disables vertical resizing of rows
let resizeRow: boolean|WebixResizeRowColConfig
Example
Section titled “Example”webix.grid({ resizeRow:true, ...});
// define the size of the area where resizing can startwebix.grid({ resizeRow:{size:6}, ...});
// allow resizing only in the headerwebix.grid({ resizeRow:{headerOnly:true}, ...});
Details
Section titled “Details”By default, the parameter is disabled.
When enabled, the property doesn’t actually resize the datagrid rows. After a page is refreshed, the size returns to the initial one (provided that you haven’t saved the state of the grid).
To change a row size, the user must drag the bottom border. To spread the area, where the mouse pointer can grab and drag the border, define the size
in pixels (the example above).
See also
Section titled “See also”Articles
API