scroll of ui.sidebar, Properties Webix Docs

StartAPI Referenceui.sidebarProperties

enables/disables the scroll bar

boolean|string scroll;

Values

  • "y" (or true)

    enables vertical scroll

  • "x"

    enables horizontal scroll

  • "xy"

    enables both scrolls

  • "auto"

    enables scroll only if the content of the list is bigger than the container

  • false

    disables both scrolls

  • Example

    webix.ui({
      view:"sidebar",
      data:menu_data,
      scroll:"y"
    });

    Default value:

    false

    Related samples

    See also

  • Articles

  • Back to top