scroll

включает/отключает полосу прокрутки

boolean|string scroll;

Values

  • "y" (или true)
    вертикальная прокрутка
  • "x"
    горизонтальная прокрутка
  • "xy"
    обе прокрутки
  • false
    отключает прокрутку
  • Example

    webix.ui({
        view:"dataview",
        height:60, xCount:2,
        scroll:"y",
        type: {
            height: 60,
            width:"auto"
        },
        template:"<div class='webix_strong'>#title#</div> Year: #year#, rank: #rank#",
        data:[
            { id:1, title:"The Shawshank Redemption", year:1994, rank:1},
            { id:2, title:"The Godfather", year:1972, rank:2},
            { id:3, title:"The Godfather: Part II", year:1974, rank:3},
            { id:4, title:"The Good, the Bad and the Ugly", year:1966, rank:4}
        ]
    });


    Default value:

    true

    Related samples

    See also
    Наверх
    If you have not checked yet, be sure to visit site of our main product Webix ui component library and page of javascript dataview product.