.. i have the changed the values in nested list with extra values added to root...
Change the values in nested list like this
TreeStore.root = {text: 'Groceries',items: [{text: 'Drinks',items: [{text: 'Water',items: [{text: 'Sparkling',leaf: true},{
text: 'Still',leaf: true}]},{text: 'Coffee',leaf: true
},{text: 'Espresso',leaf: true},{text: 'Redbull',leaf: true
},{text: 'Coke',leaf: true},{text: 'Diet Coke',leaf: true}]
},{text: 'Empty Category',items: []}]};
Is it correct way do for changing the values in tree store?
but t s not reflecting in UI... Hw can i get the changed values in UI (nested list)
i ve tried with doLayout() for the nestedlist is not working...