UI Policy Actions list not visible
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-21-2016 06:47 PM
Hello,
I'm trying to hide a form section when a certain condition is met. I created a UI policy and saved it but the UI policy actions list is not being displayed upon saving. I'm using the latest patch of Helsinki. How can I resolve this issue?
Thank you.
Regards,
Swetha Chunduri
- Labels:
-
User Interface (UI)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-23-2016 09:12 AM
You need an onChange client script on that field and an onLoad client script for this. Put this code in there
onChange client script:
if(newValue=='value goes here'){
g_form.setSectionDisplay('section name',false);
}
else{
g_form.setSectionDisplay('section name',true);
}
onLoad client script:
if(g_form.getValue('field name')=='value goes here'){
g_form.setSectionDisplay('section name',false);
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-23-2016 11:05 AM
I tried this, but when I change the field value the section display doesnt change.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-23-2016 11:07 AM
There must be errors. Open the browser console, and see what errors it show?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-23-2016 11:15 AM
GlideTabs2 findTabIndexByName could not find details this is what the console reads

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-23-2016 05:00 PM
Can you post the script and screenshot of the browser console.