Marouane Gazanayi
Marouane Gazanayi

Reputation: 5183

EXTJS Values between windows

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 ?

Upvotes: 1

Views: 2874

Answers (1)

Swar
Swar

Reputation: 5503

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);

Upvotes: 3

Related Questions