Documentation

resizeColumn

enables/disables horizontal resizing of columns

boolean resizeColumn;

Example

webix.ui({
    view:"datatable",
    resizeColumn: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