- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-16-2016 07:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2016 09:34 PM
Hi
while pointing user to external URL page from UI Action client script this will be helpful to redirect.
location.href = ("external page URL");
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2016 02:58 PM
What exactly did you put in your UI Action Script to get this work, can you provide final script.
Thanks,
Angelia
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2016 09:36 PM
Hi Angelia,
pointing to extrernal URL can be performed using many ways i have used these script to move to another external page once the use click this button.
this will open new page but frame conflicts will come.
location.href = ("external page URL");
better use this method u will get to open the URL in the new tab .
var r = getTopWindow();
r.popupOpenFocus(URL, 'related_list', 950, 700, '', false, false);
script i have used is
function popupDisp() {
var userName = g_user.userName;
var URL1 = g_scratchpad.url; // to get to URL from property
var URL =(URL1+'userName='+userName);
//open window
var r = getTopWindow();
r.popupOpenFocus(URL, 'related_list', 950, 700, '', false, false);
}