fixedRowHeight
defines whether the height should be fixed for all rows or can vary
let fixedRowHeight: boolean
default value: true
Example
Section titled “Example”webix.grid({ fixedRowHeight:false, data:[ {id:1, name:"Row with default height" } {id:1, name:"Row with custom height", $height:200 } ]});
also check the next samples:
Details
Section titled “Details”By default, the height of rows is fixed.
When the parameter is set to false, each row can have the $height property to define a custom height.
See also
Section titled “See also”Articles
API