scroll
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:"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
Join Our Forum
We've retired comments here. Visit our forum for faster technical support,
connect with other developers, and share your feedback there.