When I type the letter in username field, the first letter always a capital. How can I make the first letter in UITextField lowercase. I don't know how to fix this in Phonegap.
<form id="loginForm">
<div class="ui-hide-label">
<label for="username">Username:</label>
<input type="text" name="username" id="username" value="" placeholder="Username" />
</div>
</form>
I faced similar issue during my iOS development. I used
<input ..... autocapitalize="off" autocorrect="off"/>
and it worked fine.
I don't know about Phonegap, but with a normal UITextfield you can use this line (where textField is the outlet for a UITextField):
textField.autocapitalizationType = UITextAutocapitalizationTypeNone;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With