How can we attach a chart and a grid in 2U layout? We are trying to enclose them in HTML table row(td).
ex:
Layout: 2U
How can we attach a chart and a grid in 2U layout? We are trying to enclose them in HTML table row(td).
ex:
Layout: 2U
Hello,
Please, check the following sample:
snippet.dhtmlx.com/6c20b1e1d
Here you can find a tutorial about attaching components:
docs.dhtmlx.com/layout__attach_components.html
docs.dhtmlx.com/layout__patterns.html
how i get the chart and the grid in the same layout cell? I want to have a menu, 2 charts and one form in the “b” cell of the layout. But if i attach it to the layout only one of the Elements (the last one) is getting rendert.
Is there a way like
oldGrid = layout.cells(“b”).attachGrid();
…
newGrid = oldGrid.attachGrid();
or something like
newGrid = layout.cells(“b”).oldGrid.attachgrid();
to attach the new Grid to the Grid that is allready rendert onto the Layout?
You may try to attach an additional layout to your layout cell. So in that additional layout you may have two cells with two different components.