The currency input starts off with $0.00.
If I click into it, to enter, say $123, the 0.00 doesnt go away, so I end up with "0.00123" or "1230.00".
You're making me click, drag select, backspace, just to use it.
We need our users to enter dozens and dozens of these in a session so the usablity adds up to an annoying experience.
Ideally, clicking into it, should clear out the input if the input is already at the default.
NONE OF THESE WORK, Is there another workaround?
// on focus event
if(self.value==0) self.setValue(null);
if(self.value==0) self.setValue("");