I have two grid-panels to drag from grid1
and drop on grid2
, and a reset button with this handler function:
handler: function(){
//refresh source grid
Ext.getCmp('grid1').getStore().load();
//purge destination grid
Ext.getCmp('grid2').removeAll();
}
All works good, but when I click on the reset button, I can't drop on grid2
again!