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
  • 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