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:"unitlist",
        scroll:"auto",
        uniteBy:function(obj){
            return obj.title.substr(0,1);
        },
        template:"#title#",
        data:big_film_set
    });


    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.
    If you have not checked yet, be sure to visit site of our main product Webix widget library and page of lists in javascript product.