Documentation

scrollX

enables/disables horizontal scrolling

boolean scrollX;

Example

webix.ui({
    view:"datatable",
    scrollX:false,
    ...
})

See also

Details

By default, horizontal scrolling is enabled. It will be disabled automatically, if you set the autowidth parameter to true.

Back to top