- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2020 06:05 AM
Hi,
I have created an ui page and a drop down field values(xx, yy, zz) .
The use case is:
If i select an option from drop down field(suppose if i select yy),in the below form assume "yy" value(ui action button) beside submit button and there should be no buttons rather than "yy" action button.
Based on selected value in ui page,that particular button should appear on the form.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2020 05:36 AM
create hidden field on your form and whenever you will save the value on your ui page drop down , it will set there and then in your ui action condition use that ,
eg: current.<hidden field name> =='Your value'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2020 06:42 AM
You may try client scripting.
Put the button under section and apply onChange() client script on the field and check for g_form.getValue('field'); based on the value in dropdown field, go for g_form.setSectionDisplay('<Id of button>', true);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2020 10:01 AM
Can you elaborate on your answer Please?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2020 05:36 AM
create hidden field on your form and whenever you will save the value on your ui page drop down , it will set there and then in your ui action condition use that ,
eg: current.<hidden field name> =='Your value'