- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-02-2024 05:04 AM
I have a field of type currency. It has choices of INR,Euro, dollar,etc. Now i want only euro symbol, others i need to remove somehow. I cannot directly set these currencies to false. How to achieve this?
Attached is for reference.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-02-2024 05:34 AM - edited ‎07-02-2024 05:47 AM
Hi @Priyanka_77 Write a onLoad Client Script and use below code
Add your currency field name and modify script accordingly
g_form.removeOption('currency_field_name.currency_type', 'CHF');
g_form.removeOption('currency_field_name.currency_type', 'GBP');
g_form.removeOption('currency_field_name.currency_type', 'JPY');
g_form.removeOption('currency_field_name.currency_type', 'EUR');
This script will remove choices from Currency field specifically on field from one table not globally.
Please mark my answer Correct/helpful,
Regards,
Sid
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-02-2024 05:05 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-02-2024 05:34 AM - edited ‎07-02-2024 05:47 AM
Hi @Priyanka_77 Write a onLoad Client Script and use below code
Add your currency field name and modify script accordingly
g_form.removeOption('currency_field_name.currency_type', 'CHF');
g_form.removeOption('currency_field_name.currency_type', 'GBP');
g_form.removeOption('currency_field_name.currency_type', 'JPY');
g_form.removeOption('currency_field_name.currency_type', 'EUR');
This script will remove choices from Currency field specifically on field from one table not globally.
Please mark my answer Correct/helpful,
Regards,
Sid
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-03-2024 03:36 AM
Thankyou Sid!