Documentation

resizeRow

enables/disables vertical resizing of rows

boolean resizeRow;

Example

webix.ui({
    view:"datatable",
    resizeRow:true,
    ...
});

See also

Details

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