cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Opening of URL in a new window from a button on web-ui

Former Member
0 Kudos
4,487

hi all,

i have a requirement where on the click of a button i have to open a dynamic url in a new window.

i have tried call_browser method and doing changes in html page such as adding iframe or using the on_client_click event yet the browser is not opening.

please let me know how can i achieve it?

thanks,

Saloni

View Entire Topic
PranavBhardwaj
Explorer
0 Kudos

Try to use any one of the below command and pass it tot the parameter GS_URL:
javascript:window.open( 'https:www.google.com' );window.parent.close() - this will close the parent iframe in the background. OR use,
javascript:window.open( 'https:www.google.com', '_parent') - this will replace the parent i-frame with the new window