scroll of ui.form, Properties Webix Docs

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:"form", 
        elements:[
            { view:"select", label:"Version", options:["1.0", "1.5", "2.0"]},
            { view:"text", type:"password", value:"123pass", label:"Password"}
            // more elements
        ],
        scroll:true 
    });

    Default value:

    "y"

    Related samples

    See also

    Back to top

    If you have not checked yet, be sure to visit site of our main product Webix javascript ui library and page of form widget product.