popup on interceptor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2018 11:03 AM
hello,
Can anyone guide on who to create popup message Yes/NO when clicked on a link on interceptor page?
Its like
we have a link expedited change, when we click on that it directly to the change window with change type as expedited
What i want is when someone click on expedited change link, system should ask "Are sure to raise expedited change"
is yes than proceed if no than stop
regards

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2018 01:51 PM
Did you try top.window.location?
How can I redirect a user with an onChange client script?
Regards,
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2018 07:28 AM
Nope that's not helping
Client script
===
function continueOK() {
alert('actionok');
response.sendRedirect('URL');
}
function continueCancel(){
//Close the dialog window
alert('actioncancel');
GlideDialogWindow.get().destroy();
return false; response.sendRedirect('URL');
}
in both the action i get alert.
Nothing in processing at this moment