scroll

enables/disables the scroll bar

boolean|string scroll;

Values

  • "y" (or true)
    enables vertical scroll (the default value)
  • "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: "property",
        scroll: "y",
        elements:[
            { label: "Layout", type: "label" },
            { label: "Width", type: "text", id: "width", value: 250},
            { label: "Height", type: "text", id: "height"},
            { label: "Password", type: "password", id: "pass"}
        ]
    });


    Default value:

    "y"

    Related samples

    See also
    Back to top