- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2016 05:01 PM
We want to hide the UPDATE and SAVE UI Action form button on the approval form
I added the approval view with EXCLUDE for the save button but that didnt work, when i set it to INCLUDE it hides it for all tables. its doing the opposite that it should or am i missing something?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2016 05:33 PM
The Approval form is not Approval view, the view used on the Approval form is the "Default" one.
If you want to hide it just on the approval form, do the same you did for the table "new_call", adding a condition to make sure the Table is not "sysapproval_approver" (... && current.getTableName() != 'sysapproval_approver').
Hope it helps!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2016 05:10 PM
This UI Action visibility applies globally, since you're applying it to the Global table. In order to hide it only one the Approval table, I would suggest creating a new UI Action for only the approval table, with the same action name, and setting the Condition to false or 1 == 0 to make sure it doesn't show.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2016 05:11 PM
Oh, I missed your middle question, I think the view is called Default view, not Approval.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2016 05:33 PM
The Approval form is not Approval view, the view used on the Approval form is the "Default" one.
If you want to hide it just on the approval form, do the same you did for the table "new_call", adding a condition to make sure the Table is not "sysapproval_approver" (... && current.getTableName() != 'sysapproval_approver').
Hope it helps!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-08-2016 09:43 AM