Populate The Popup Window without refreshing Parent Page.
-
Hi, I hav implemented the functionality to call a popup window. but while i child window appears , the value of parent will refresh. suggest Clue If Any. Regards Tarun Singh Sr. Software Engineer. mailto:tksingh@zenta.com
-
Hi, I hav implemented the functionality to call a popup window. but while i child window appears , the value of parent will refresh. suggest Clue If Any. Regards Tarun Singh Sr. Software Engineer. mailto:tksingh@zenta.com
use the following javascript function.. pass the target url, width and height of the window to be opened. function OpenWindow(url, width, height) { if( url == null || url == "" ) { return false; } else { var handle = window.open(url, "scrollbars=yes,screenX=25,screenY=25,directories=0,height=" + height + ",width=" + width + ",location=no,menubar=no,resizable=yes,status=no,toolbar=no"); + Children.push(handle); handle.focus(); return handle; } } --Sreeram
-
use the following javascript function.. pass the target url, width and height of the window to be opened. function OpenWindow(url, width, height) { if( url == null || url == "" ) { return false; } else { var handle = window.open(url, "scrollbars=yes,screenX=25,screenY=25,directories=0,height=" + height + ",width=" + width + ",location=no,menubar=no,resizable=yes,status=no,toolbar=no"); + Children.push(handle); handle.focus(); return handle; } } --Sreeram
Does this function will refresh parent page ?
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... "
-
Does this function will refresh parent page ?
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... "