Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2023 06:45 AM
While submitting the form I need show a Warning popup message with 'Cancel' & 'OK' button like below
Solved! Go to Solution.
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2023 06:53 AM
Hi @Kri
You can use below code to get a pop up with cancel and ok button in on submit client script -
var usrResponse = confirm('Are you sure you want to transfer this request to incident?');
if (usrResponse == 'false') {
return false; //Abort submission
} else
{
return true;
}
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2023 06:53 AM
Hi @Kri
You can use below code to get a pop up with cancel and ok button in on submit client script -
var usrResponse = confirm('Are you sure you want to transfer this request to incident?');
if (usrResponse == 'false') {
return false; //Abort submission
} else
{
return true;
}