Documentation

yCount

defines height of view in items

number yCount;

Example

//height of view will be enough to show 10 items
webix.ui({
    view:"list",
    yCount:10
})

See also

Details

Possible values for the property are:

  • desired number;
  • 0 to disable yCount ( calculate the number of item on the base of component size).

Related sample:  Popup Menu

Back to top