Work with Layout
Removing cells
To remove a certain cell from a layout, apply the removeCell() method. As a parameter it takes the id of a cell to be removed:
layout.removeCell(id);
Related sample: Layout. Remove cell
Getting the object of a cell
You can get the object of a cell by its id. Use the getCell() method for this purpose:
layout.getCell("header");
Attaching a component to a cell
Attach a component
You can easily attach any DHTMLX component (except for Message, Popup, Window) to a cell of Layout using the attach() method of a cell:
const layout = new dhx.Layout("layout_container", {
width:"400px", height:"600px"
});
const list = new dhx.List(null, {
template: listTemplate,
itemHeight: 52,
height: "100%",
dragMode: "both"
});
list.data.load('../common/library.json');
layout.getCell("list").attach(list);
Related sample: Layout. Attach widget
The Message, Popup, Window components can't be attached to the Layout cell because these components can't have the parent container due to their architecture principles.
Detach a component
To detach a component from a Layout cell, use the detach() method of a cell:
layout.getCell("list").detach();
Attaching an HTML content to a cell
Attach HTML content
You can easily attach some HTML content to a cell of Layout via the attachHTML() method of a cell. It takes as a parameter a string with HTML.
const layout = new dhx.Layout("layout_container", {
width:"400px", height:"600px"
});
const html = "<p>Hello world</p>";
layout.getCell("content").attachHTML(html);
Detach HTML content
To detach any HTML content from a Layout cell, use the detach() method of a cell:
layout.getCell("content").detach();
Hiding/showing a cell
It is possible to hide/show a cell with the help of its API. Both the hide() and show() methods take the id of a cell as a parameter.
// hiding a cell
layout.getCell("toolbar").hide();
Related sample: Layout. Hide
// showing a cell
layout.getCell("toolbar").show();
Related sample: Layout. Show