I have a form with a NumberField that gets values of type float from JSON. If the values happen to be whole numbers, then no decimal places are sho
NumberField
float
Best bet is probably to add a listener to the blur event for it, and then use the built in Javascript .toFixed(2) function on the value of the field.