Re: [validator] currency values and datatypes

2003-08-16 Thread Robert Leland
Matt Raible wrote: First question - Should I be using Floats or Doubles? Well Javascript has something it call float but no double. I don't know what the precision is but as you noticed validator only has a validateFloat() JS function. Robert Leland [EMAIL PROTECTED]

[validator] currency values and datatypes

2003-08-16 Thread Matt Raible
I'm developing an application that has a bunch of "dollar amount" fields. I want to validate my design, as well as ask a couple of questions. It's not an internationalized application, so I'm using "Double" for my data types in my POJOs - which translates to a "double" in MySQL (when using Hi