Documentation

yCount

defines height of datatable in rows

number yCount;

Example

//grid will height enough to show 20 rows of data
webix.ui({
   view:"datatable",
   yCount:20
});

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