- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-26-2017 10:21 PM
Hi.
I need a button (UI Action) to show only when record is already saved (exists in DB).
There is function like event("update") that returns true : false that fits perfectly to my condition requirements, but
i forgot that function name
Please remind me and also if you know the docs URL that documents these and similar, that would be helpful.
Thank you,
Pawel.
Solved! Go to Solution.
- Labels:
-
User Interface (UI)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-26-2017 10:36 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-26-2017 10:24 PM
Hi Pawel,
There is a checkbox "Insert" on UI action. Please make sure it is unchecked.
Depending on the release in case you don't see that option then you can control it via UI action condition i.e
!current.isNewRecord()
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-26-2017 10:36 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-26-2017 11:01 PM
If I answer your question please mark the answer correct to remove it from unanswered list.
Thanks,
Arindam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-26-2017 11:11 PM
for sake of properness
!(current.isNewRecord())
thank you all.
Pawel.