M
mkobus
Im relatively new, so please be patient with me...
I need to update a parent .aspx screen from a popup and close the
popup. Normally I would use
'window.opener.location.reload(true);self.close();' but i need the
parent window not to reload or else data that the user has already
entered will be lost during the IsPostBack.
I need the 'Apply' button on the popup to trigger the 'Update' button
on the parent screen. The script ive seen is like this...
'window.opener.location.Form1.Button1.Click(); self.close();' but I
get a Javascript Error that reads
'window.opener.location.Form1.Button1' is null or not an object.
Any thoughts? Ive seen other posts that say to make sure Button1 on
Form1 is within the <form> tags and it is. Any help would be
appreciated!
I need to update a parent .aspx screen from a popup and close the
popup. Normally I would use
'window.opener.location.reload(true);self.close();' but i need the
parent window not to reload or else data that the user has already
entered will be lost during the IsPostBack.
I need the 'Apply' button on the popup to trigger the 'Update' button
on the parent screen. The script ive seen is like this...
'window.opener.location.Form1.Button1.Click(); self.close();' but I
get a Javascript Error that reads
'window.opener.location.Form1.Button1' is null or not an object.
Any thoughts? Ive seen other posts that say to make sure Button1 on
Form1 is within the <form> tags and it is. Any help would be
appreciated!