Sri Sankaran
Sri Sankaran

Reputation: 8310

Locale-aware JavaScript validation

Can you suggest a locale-aware way to validate a currency value on the client using Javascript?

Obvious issue to consider: 1,234.56 in the US and UK is the same as 1.234,56 in most of Europe

Sri

Upvotes: 2

Views: 1361

Answers (1)

ichiban
ichiban

Reputation: 6200

Here's a link to a free javascript library that can help you with that: Dojo Currency Formatter, there's also a similar feature in ASP.NET Ajax.

Upvotes: 1

Related Questions