minWidth
Optional. The minimal width to be set for a cell
minWidth?: number | string;
Example
const layout = new dhx.Layout("layout_container", {
cols: [
{ header: "Cell header", minWidth: "400px"}
]
});
In case both width and minWidth properties are set in the configuration of a cell, the minWidth option is a priority.
Change log:
added in v7.0