Documentation

yCount

adjusts the view height to display the defined number of items in a column

number yCount;

Example

webix.ui({
    view:"dataview",
    data:big_film_set,
    xCount:4, yCount:2
        });

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