enables/disables vertical resizing of rows
webix.ui({
view:"datatable",
resizeRow:true,
...
});
// define the size of area where resizing can start
webix.ui({
view:"datatable",
resizeRow:{size:6},
...
});
// allow resizing only in the header
webix.ui({
view:"datatable",
resizeRow:{headerOnly:true},
...
});
By default, the parameter is disabled.
When enabled, the method doesn't actually resize the datatable. After page refresh, size returns to the initial one (provided that you haven't saved the table's state).
To change a row size, the user drag the resizing border. To spread the area, where the mouse pointer can grab and drag the border, define the size
in pixels (the example above).