minHeight
sets the minimal height for the view
number minHeight;
Example
webix.ui({
rows:[
{
view: "spreadsheet", id:"ss",
data: spreadsheet_data,
minHeight:500
},
{ /* other components */ }
]
});
Related samples
Details
- The view can take the height not less than the specified value.
- If more (free) space is available - the view will take it.
- During resizing the view can't take the size lesser than the value of minHeight.
See also
Back to top