- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2023 04:31 PM
Hi,
I have a UI Action button that is called "Send For Internal Review" I only want it to load when the "Report Status" variable is changed to "Due"
The script I have in the condition is (current.reportstatus=="Due") but that is not working and neither is anything else I am trying.
Please help
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2023 09:32 AM
Let me guess your testing scenario: when you got into the Default Report form to create a new record, the Report Status was not Due, we are seeing Due selected there in your screenshot because you clicked the drop down and selected Due. And you expect to see button to show up at this moment?
If that's the case, please note the condition runs at server side. Your change without saving the record won't execute the condition
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2023 04:50 PM
Hi Sam,
Could you please share your UI Action configuration?
Best Regards,
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2023 04:55 PM - edited 09-15-2023 04:58 PM
Hi, here is what it looks like right now! This is what it looks like right now
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2023 05:13 PM - edited 09-15-2023 05:15 PM
Add an action name and uncheck the show insert checkbox.
I recommend removing the () from the condition, keeping only current.reportstatus=="Due"
You need also to add the onclick function and the script. to test add this
onclick: executeFunction();
Script:
function executeFunction(){
gs.addErrorMessage('It is a test');
}
If you think my answers are useful for you, I would appreciate it if you could mark my answers as helpful.
Best regards,
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2023 05:52 PM
Like this? Sorry if this is a dumb question. I just don't know why I can't figure it out