fixedRowHeight

defines whether the height should be fixed for all rows or can vary

boolean fixedRowHeight;

Example

webix.ui({
    view:"datatable",
    fixedRowHeight:false,
    data:[
      {id:1, name:"Row with default height" }
      {id:1, name:"Row with custom height", $height:200 }
    ]
});


Default value:

true

Related samples

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
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.
If you have not checked yet, be sure to visit site of our main product Webix web development library and page of tree table widget product.