Documentation

scroll

the direction of scrolling

string scroll;

Example

webix.ui.vscroll({
        container:"scroll_here",
        scrollHeight:500,
        scroll:"y"
});

Details

The parameter can take only one of a predefined set of values.
The predefined values are:

  • 'y' - vertical scrolling
  • 'x' - horizontal scrolling (the default value)
Back to top