sets the height of a Layout cell
var layout = new dhx.Layout("layout", {
rows: [
{
id: "row1"
},
{
id: "row2",
headerHeight: 80
}
]
});
If the header property is not set in the config of a cell, the headerHeight option will add a header without text for a cell.
added in v6.4
Back to top