How can I embed a ListGrid inside a Tree or TreeGrid Structure. Basically I want to be able to display mutiple table names in a Tree Structure and inside every Tree node display the Table columns as a ListGrid.
For every Tree node I will have a differnt ListGrid (1 per node). If you are familiar with Stylus Studio, I am trying to design a similar Grid view structure.
Something like this but a ListGrid instead of Tree:
For every Tree node I will have a differnt ListGrid (1 per node). If you are familiar with Stylus Studio, I am trying to design a similar Grid view structure.
Something like this but a ListGrid instead of Tree:
Code:
isc.TreeGrid.create({
data:isc.Tree.create({
parentIdField:"parentID",
modelType:"parent",
data:[
{itemName:"root", parentID:null},
{itemName:"one", parentID:"root"},
{itemName:"two", parentID:"root"},
{itemName:"three", parentID:"one"}
],
titleProperty:"itemName",
idField:"itemName"
})
,
top:100,
dataSource:"supplyCategory",
left:100,
ID:"dataTree"
})
Comment