enables/disables vertical resizing of rows
webix.ui({
view:"datatable",
resizeRow: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).
Back to top