开发者

EXTJS Values between windows

to modify an Item, I开发者_StackOverflow社区 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 ?


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

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜