- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-11-2025 03:07 AM
hey, I want to update the currency symbol via script but it dose not allow me. instead it automatically parse the value to specific Currency. how can I change the Currency symbol ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-11-2025 03:13 AM - edited ‎02-11-2025 03:13 AM
Hello @eyal abu hamad
You need to set it like this
var currencyCode = 'EUR';
current.currencyTypeField.setValue(currencyCode + ";" + convertedValue);
If my response has helped you hit helpful button and if your concern is solved do mark my response as correct.
Thanks & Regards
Viraj Hudlikar.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-11-2025 03:14 AM
To set the value of currency in a different currency to the user's, you can set the value with a prefix currency code value.
For example, if I wanted to set the total_cost field to a specific value I would do the following:
current.setValue('total_cost' , 'GBP;' + '499.99')
Further details can be found on the docs site
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-11-2025 03:13 AM - edited ‎02-11-2025 03:13 AM
Hello @eyal abu hamad
You need to set it like this
var currencyCode = 'EUR';
current.currencyTypeField.setValue(currencyCode + ";" + convertedValue);
If my response has helped you hit helpful button and if your concern is solved do mark my response as correct.
Thanks & Regards
Viraj Hudlikar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-11-2025 03:37 AM
I have other problem now, when I try to get the value or display value using script it get automatically converted to my currency.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-11-2025 03:14 AM
To set the value of currency in a different currency to the user's, you can set the value with a prefix currency code value.
For example, if I wanted to set the total_cost field to a specific value I would do the following:
current.setValue('total_cost' , 'GBP;' + '499.99')
Further details can be found on the docs site
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-11-2025 03:37 AM
I have other problem now, when I try to get the value or display value using script it get automatically converted to my currency.