Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2024 10:18 PM
I need one help in Before Business Rule when insert and Update is checked.
I am writing this script on Task Table:
(function executeRule(current, previous /*null when async*/) {
// Check if the visibility group has changed and the info message has not been added already
if (previous.u_secure_visibility_group != "" && previous.u_secure_visibility_group != current.u_secure_visibility_group && !gs.hasInfoMessages()) {
gs.addInfoMessage("Test");
}
})(current, previous);
But the issue is this info message is appearing at the top but again disappearing after some miliseconds
What can be the cause.
Thanks
Thanks
Solved! Go to Solution.
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2024 10:54 PM
6 REPLIES 6
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2024 10:53 PM
Thanks @SanketLandge1
But I am talking about Native UI
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2024 10:54 PM