Hi !
I have a question about Docking Layout. How can I call content tag of LayoutPanelItem into HTML : <smart-docking-layout></smart-docking-layout>
without mentionned it into Json, for example I want to set content of tab1 into the tag smart-docking-layout:
[{
type: “LayoutGroup”,
orientation: “horizontal”,
items: [
{
type: “LayoutGroup”,
items: [
{
type: “LayoutPanel”,
id: “item1”,
label: “Tabs 1”,
tabPosition: “top”,
dropPosition: [“top”, “bottom”, “header”, “layout-top”, “layout-left”, “layout-right”, “layout-bottom”],
items: [
{
type: “LayoutPanelItem”,
id: ‘tab1’,
label: “Tab 1”,
selected: true
//content: “Item dropping is allowed only on the top, bottom and header positions.”
}],
min: 200,
size: 627
}]
}]
}];
Could you help me please !
Thank you.