Prev: url rewrites
Next: CMS and C#?
From: Andy on 18 Apr 2010 17:24 Hi, Ok, I have a page with an updatepanel, which can open a popup. The popup can change an object's values which is stored in the session, this object is displayed on the main window. I'd like to have the updatepanel update when the popup is closed. I can't do the update call after window.open, because that returns immediately (before the user could possibly edit the settings in the popup). I tired having a javascript page level variable to store the popup and set its onunloaded to a function defined in the main window. That never seems to get called. Any ideas? The popup is used on a few different pages, so I can't do anything that would tie it to a particular parent page. Here's what I have in the parent page: function openPopup( popupOpener ) { if ( popupWindow == null ) { popupWindow = popupOpener(); popupWindow.onunload = setDirty; } else { alert( 'Please close the existing popup editor and try again'); } } popupOpener is a function which simply does { return window.open( ... ); } setDirty should initiate the updatepanel refresh, but its not being called. Thanks Andy
From: Gregory A. Beamer on 21 Apr 2010 12:59 "Andy" <ajj3085(a)alum.rit.edu> wrote in message news:a6263987-52b0-49f8-9570-6350ff77d97f(a)g11g2000yqe.googlegroups.com... > Hi, > > Ok, I have a page with an updatepanel, which can open a popup. The > popup can change an object's values which is stored in the session, > this object is displayed on the main window. I'd like to have the > updatepanel update when the popup is closed. > > I can't do the update call after window.open, because that returns > immediately (before the user could possibly edit the settings in the > popup). I tired having a javascript page level variable to store the > popup and set its onunloaded to a function defined in the main > window. That never seems to get called. > > Any ideas? The popup is used on a few different pages, so I can't do > anything that would tie it to a particular parent page. In a popup to another window, you can talk back to the parent window in JavaScript and send it some info that fires off the AJAX. Another option is to have the modal popup in a DIV on the same page. Wiring this way makes it quite easy to wire an action on the DIV to an AJAX call, as you have the control in the same window. In fact, you can wire the control to AJAX on the server side and then only show the DIV when necessary. Much easier, but it may not fit your requirements. -- Peace and Grace, Greg Twitter: @gbworld Blog: http://gregorybeamer.spaces.live.com ************************************************ | Think outside the box! | ************************************************
|
Pages: 1 Prev: url rewrites Next: CMS and C#? |