- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â05-23-2023 08:59 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â05-23-2023 09:05 PM
Hi @servicenow14710 ,
you can check in the onSubmit client script which UI action got clicked.
Please follow the steps mentioned: Identifying UI Action Clicked (The Right Way)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â05-23-2023 09:05 PM
Hi @servicenow14710 ,
you can check in the onSubmit client script which UI action got clicked.
Please follow the steps mentioned: Identifying UI Action Clicked (The Right Way)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â05-24-2023 09:56 PM
@Community Alums : I have two UI Actions with same name on eis active and another is not, So when i give the name it is not working , but instead i gave action name of that UI Action in if condition and it worked.
var action = g_form.getActionName();
if(action == 'name')
Please let me know if action name is used instead of name. Thanks.