Re: Format Double to String

2010-05-25 Thread Jeff Chimene
Why not write a custom routine in JavaScript? On Tue, May 25, 2010 at 7:18 AM, StrongSteve wrote: > Hello Everybody, > > Our application puts out a lot of double values. > Unfortunately it is not ok to output the double value using the > exponent - for example: 12E-7 we want the the whole nu

Re: Format Double to String

2010-05-25 Thread rudolf michael
formatted = NumberFormat.getFormat("#.#").format(value); http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/i18n/client/NumberFormat.html Most of the methods are the same a

Format Double to String

2010-05-25 Thread StrongSteve
Hello Everybody, Our application puts out a lot of double values. Unfortunately it is not ok to output the double value using the exponent - for example: 12E-7 we want the the whole number - for example 0.00012 I am really stuck, as GWT does not support the DecimalNumberFormat and I do no