I created a coordinate widget that has two text boxes to accept the long and lat from the user.
I used the dijit/form/NumberTextBox.
At first, I didn't use any constraints but it seems it would not display any numbers with more than 3 decimal places!
Then, I introduced the constraints and specify decimal places.
With the constrainsts, the NumberTextBox will display more than 3 decimal places but it prompts that this is not a numeric value!!!
What am I doing wrong?
Thanks.
<input id="longitude" type="text"
data-dojo-type="dijit/form/NumberTextBox"
name= "long"
required="true"
value=""
data-dojo-props="constraints:{min:-900000000000,max:900000000000,places:10}, invalidMessage:'Please enter a numeric value.'" />