enables/disables the scroll bar
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}
]
});