defines the type of borders between cells inside a layout
const layout = new dhx.Layout("layout", {
type: "space", cols: [
{
html: "1"
},
{
html: "2"
},
{
html: "3"
}
]
});
"line" | adds a border to a cell |
"space" | adds a border and space around a cell |
"wide" | adds a border to a cell and space between the neighboring cells |
"none" | removes visible borders and space between cells |
Note, that if the children cell has no specified type of borders, the cell has the same type of borders as its parent cell.
added in v7.0
Back to top