Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2017 12:49 AM
Hi Ravi,
My pleasure.
Yes, you can show alert message on your requirement as below. In that case you have to modify the code as below:
For Client script:
if (g_form.getValue('variable_name') == 'No') {
alert("Show your message here");
return false; }
For Business rule:
if (current.variables.variable_name == 'No') {
gs.addInfoMessage("Show your message here");
current.setAbortAction(true); }
I hope this helps.Please mark correct/helpful based on impact