Skip to main content
Nintex Community Menu Bar
Question

Not rendering org default currency symbol - (Shows always $)

  • July 11, 2024
  • 1 reply
  • 8 views

Forum|alt.badge.img+1

Have set org’s Currency Locale to English (India) - INR. Currency fields are getting rendered properly with INR symbols in the salesforce standard layout. But it is showing $ by default in the skuid pages.

1 reply

Forum|alt.badge.img+1

Found the reason for this.

The fix for this issue is available in the version Brooklyn 10.0.15 and Millau 11.0.5. Instead if there are any risk of upgrade, you can add this in-line script on each page.


!function(n){var r=n.currency.getSymbol,c={INR:“₹”,KRW:“₩”,KPW:“₩”};n.currency.getSymbol=function(n){return c[n]||r(n)}}(skuid);