- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2023 04:14 AM
Hi all
Can someone guide me on how to create a pop up that appears after submit is pressed on ordering a particular catalog item on the service portal please?
Thanks in advance 🙂
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2023 04:34 AM - edited 01-19-2023 04:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2023 04:34 AM - edited 01-19-2023 04:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2023 01:03 AM
Perfect - thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2023 04:45 AM
@sarahleighton If just popup where user read it click ok go with @Ratnakar7 script keeping alert
If you want pop up with yes or no and when they click no abort submission
then use below
function onSubmit() {
var confirm = confirm("Did you submit form 104333?");
if (confirm == false) {
return false;
}
}
If you want pop up with fields and need to do more logics create a UI Page and calling it is a best option.
Thanks,
Bharath
Bharath Chintala
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2024 10:19 PM
Hi, I have a similar requirement. But on submit I wanted to make an API call display the response on the pop up. When the user clicks on ok, the form should be submitted. Any suggestions on how to achieve this. On submit client script doesn't work as the form gets saved before the API calls are processed .
Any leads are highly appreciated