How to refresh set locale

Hello Team,

Onchange of country dropdown I need to show the currency symbol based on selected country. I am using the following code.

webix.i18n.locales[“en-US”].price = “{obj} €”;
webix.i18n.setLocale(“en-US”);

after changing setlocale pricetext field is not changing with new currency symbol. How to refresh after setting new setlocale.

Hi, to change the locale in use (“en-US” by default), you need the following instruction:

webix.i18n.price = "{obj} €";
webix.i18n.setLocale();

Check the snippet, please: http://webix.com/snippet/166e1cdf

http://docs.webix.com/desktop__localization.html#alteringalocale