I'm developing an iphone application with phonegap, this means my application is in html5, javascript and css. I have a form with a field for weight on an object. I'm trying to get an input type similar to;
<input type="time"/>
Html5 supports different types of input, and this will toggle a different keyboard for the iphone, for example the numeric keyboard for numbers. The one I'm looking for is the one where you can roll vertically over numbers. Like when you set your alarm clock on the iphone, example below.
http://blog.ringtonefeeder.com/wp-content/uploads/2009/01/iphone-alarm.png
The input type="time" gives me that, but it's restricted to 24 hour window and 1-59 minute window.
Is there anyway to customize this input type so I can get a 2 decimal number? in the range of 0-999.99 kg.
I realize this is a vague question but it's hard to explain.