nywebsol
6 Jan 2012, 1:41 PM
var campaignChildren = [{
text: 'Campaigns',
children: [{
text: 'Search Campaign',
leaf: true
}, {
text: 'Add Campaign',
expanded: true,
children: [{
text: 'Campaign Settings',
leaf: true
} ]
}
]
}];
I am trying to add nodes programatically to be a sibling of 'Campaign Settings'
Kind of a nubie and struggling a little.
Defining the nodes is done. I just can't figure out how to make them siblings of "Campaign Settings"
Any help is much appreciated
text: 'Campaigns',
children: [{
text: 'Search Campaign',
leaf: true
}, {
text: 'Add Campaign',
expanded: true,
children: [{
text: 'Campaign Settings',
leaf: true
} ]
}
]
}];
I am trying to add nodes programatically to be a sibling of 'Campaign Settings'
Kind of a nubie and struggling a little.
Defining the nodes is done. I just can't figure out how to make them siblings of "Campaign Settings"
Any help is much appreciated