- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2023 11:23 PM
Hi All,
Actually we have two text fields that Validation Regex set as " Currency" and default value set as "AUD$", one field is displayed based on other field, for that i have written ui policy, for this field the default value not shown on the form , same as for other field , its shows default value""AUD$",?
Please help me on this
The currency field which was display based on ui policy;
Another normal currency field;
Thanks
Ramu
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2023 11:47 PM
Hi @Ramu6,
Ensure that the 'Clear the field value' checkbox is unchecked within the UI policy action.
OR
Once you make it visible using UI policy, in scripts write this -
Execute if true:
g_form.setValue('field_name', 'AUD$');
If my response helps you resolve your issue. Kindly mark it as helpful & correct. It will be helpful to future readers! 👍🏻
Thanks,
Sagar Pagar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2023 11:47 PM
Hi @Ramu6,
Ensure that the 'Clear the field value' checkbox is unchecked within the UI policy action.
OR
Once you make it visible using UI policy, in scripts write this -
Execute if true:
g_form.setValue('field_name', 'AUD$');
If my response helps you resolve your issue. Kindly mark it as helpful & correct. It will be helpful to future readers! 👍🏻
Thanks,
Sagar Pagar