views:

25

answers:

1

to modify an Item, I call a function that shows me a modal window, I give to this function the value to change, and I want that after closing the modifiying window, return the value to the first one. how to do ?

+1  A: 

Please provide some code. Access your parent window this way :

var parentWin = Ext.getCmp('parent_window_id');

If parent window has a function say callMeNow(value) to pass the value you want after closing, then call it when child window is closed this way:

var childWin = Ext.getCmp('child_window_id');

childWin.on('beforeclose', function(){
    parentWin.callMeNow(valueToBePassed);
}, this);
Swar
I just used the beforeclosethnx dude !!
taichimaro