I have a field that is a numeric type. It needs to allow users to enter exactly six digits. Sometime, those six digits will have a leading zero. What I need to happen is have that leading zero display both on the form (which I am using LCD 7.0), and I need to have that leading zero show up on the XML file
Can someone please help me? Is anyone out here on Saturday?
Thanks
Entering the value ".499" into the form field displays "0.50" and exports the following XML file:
And you can write a custom validation script in JavaScript to limit the input values, like:
this.rawValue >= 0 && this.rawValue <= 9999.99;
George Kaiser