HTML5 inputs and PhoneGap – iPhone and Android 2

In previous post we seen few HTML5 input type (Text, Email, URL and Number  ) and iOS keyboard type when we focus on the input. Check with few more keyboard type in iOS and Android in this post : HTML5 inputs and PhoneGap - iPhone and Android now <input type="tel" name="txtPhone"/> and finally, when I try with type="range". it is also working fine in iOS. for example <input type="range" name="points" min="1" max="10" /> by default it is that input value set to 6 and when I try ...
More

HTML5 inputs and PhoneGap – iPhone and Android

In this post I am going to talk about HTML5 controls in PhoneGap. Not only PhoneGap we can also use this input in mobile based web site too. HTML5 is the next generation of HTML. In one word I can say HTML5 make web more Rich. PhoneGap is popular Cross platform framework in mobile world. it will support for all top mobile OS. Few weeks before there release beta version for Windows Phone 7.5 Mango. I captured few screenshots from iOS, we can see   different  keyboards for input types Email,URL...
More

iPhone Keyboard type – UIKeyboardType

UIKeyboardType The type of keyboard to display for a given text-based view. And it is very useful, for example:- I want to enter URL address, must of the website we need to add .com (hold to get more options like .net) at end. typedef enum { UIKeyboardTypeDefault, UIKeyboardTypeASCIICapable, UIKeyboardTypeNumbersAndPunctuation, UIKeyboardTypeURL, UIKeyboardTypeNumberPad, UIKeyboardTypePhonePad, UIKeyboardTypeNamePhonePad, UIKeyboardTypeEmailAddress, UIKeyboardTypeDecimalPad, UIKeyboardTypeAlpha...
More