Re: Currency Symbol in NumberFormat

2010-10-27 Thread Jim Douglas
Click this link: http://gwt.google.com/samples/Showcase/Showcase.html#!CwNumberFormat Look for the ListBox in the top right corner of that page. Select English - India from that list. The page changes to: http://gwt.google.com/samples/Showcase/Showcase.html?locale=en_IN#!CwNumberFormat Note

Currency Symbol in NumberFormat

2010-10-26 Thread PARAG
Hi, I want to use custom number format which may contain currency symbol for perticular locale. I found that with the com.google.gwt.i18n.client.NumberFormat class we can achieve this but the symbol for the currency is ¤ instead of ¤ in java. Note that the unicode used is same as that of the

Re: Currency Symbol in NumberFormat

2010-10-26 Thread Jim Douglas
I think you're getting thrown by a small character encoding error on that documentation page: http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/i18n/client/NumberFormat.html The page will display correctly if you force it to display in UTF-8. To do that, select something

Re: Currency Symbol in NumberFormat

2010-10-26 Thread Chris Conroy
Jim, Thanks for pointing out this problem. jat has just committed a fix: http://code.google.com/p/google-web-toolkit/source/detail?r=9150 On Tue, Oct 26, 2010 at 3:47 AM, Jim Douglas jdou...@basis.com wrote: I think you're getting thrown by a small character encoding error on that

Re: Currency Symbol in NumberFormat

2010-10-26 Thread PARAG
Hi Jim, Thanks for looking into it. But still I have a problem, when in the custom format I use just ¤ then in the output I am getting ? and when I use ¤ then I get US$. Note that I do have UTF-8 encoding in the browser. On Oct 27, 1:23 am, Chris Conroy con...@google.com wrote: Jim, Thanks