Reputation: 481
I want remove all the items from the Ext window component. Means i have to clear the window in a button event. Any help is must appreciated....Thankz
just
Upvotes: 0
Views: 7943
Reputation: 2216
try
removeAll() method of window, which Removes all components from this container.
window.removeAll()
or Ext.getCmp('windowId').removeAll();
refer : Ext.Window-method-removeAll
Upvotes: 4