the maximal height to be set for a cell
var layout = new dhx.Layout("layout_container", {
cols: [
{ header: "Cell header", maxHeight: "100px"}
]
});
In case both height and maxHeight properties are set in the configuration of a cell, the maxHeight option is a priority.
added in v7.0
Back to top