Dear all,
I used SectionStack as given below.
isc.SectionStack.create({
ID: "sectionStack",
visibilityMode: "single",
width: 300, height: "100%",
sections: [
{title: "Store", expanded: true, items: [boundTree]}
]
});
and boundTree is TreeGrid component which is working fine. But what I actually need is to create more sections and a treegrid inside each section. The number and title of these sections have to be taken from a java class. The content of the treeGrid is also coming from database. If use the above code for a single section(hardcoded title and treegrid id) it is working fine. But can I use something like datasource used for treegrid with which I can get the sections dynamically.
I used SectionStack as given below.
isc.SectionStack.create({
ID: "sectionStack",
visibilityMode: "single",
width: 300, height: "100%",
sections: [
{title: "Store", expanded: true, items: [boundTree]}
]
});
and boundTree is TreeGrid component which is working fine. But what I actually need is to create more sections and a treegrid inside each section. The number and title of these sections have to be taken from a java class. The content of the treeGrid is also coming from database. If use the above code for a single section(hardcoded title and treegrid id) it is working fine. But can I use something like datasource used for treegrid with which I can get the sections dynamically.
Comment