[SOLVED] Decimal delimiter depends on front end side...

Answered
0
0

Hi,

I saw that decimal delimiter choice (coma or point) depends on front end (customer) side. For different customer’s browsers and OS it is different – coma or point.

I would like to control decimal delimiter for all customers of my web application and I like decimal delimiter to be point.

Is ti possible?

Thank you!

Best regards!

Mario

 

  • You must to post comments
Best Answer
0
0

Hi Mario,

This link might be helpful showing how to override delimiters: https://stackoverflow.com/questions/7201532/how-can-i-override-the-currency-formatting-for-the-current-culture-for-an-asp-ne

 

You can change the “culture” setting in the Default.json file.  This allows you to customize the language for localization.

 

You can also find more information about localization here: https://wisej.com/docs/2.0/html/Localization.htm

— The CultureChanged event might be useful to set the delimiter if the language is not English.

 

Here is a link that shows you how to parse values for all kinds of delimiters.  This would be useful so clients can keep their native format.

https://stackoverflow.com/questions/14400643/accept-comma-and-dot-as-decimal-separator

 

I hope this helps!

Please let me know if you have any more questions.

Best,

Levie

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.