I have the form panel.
mypanel = Ext.create('Ext.fomr.Panel');
mypanel.add(Item1);
mypanel.add(Item2);
mypanel.add(Item3);
Now I want to get the list of items in mypanel so that I can add it to another panel.
How can i do that
I have the form panel.
mypanel = Ext.create('Ext.fomr.Panel');
mypanel.add(Item1);
mypanel.add(Item2);
mypanel.add(Item3);
Now I want to get the list of items in mypanel so that I can add it to another panel.
How can i do that