Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make first letter in UiTextField lowercase (Phonegap for iOS)

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>
like image 582
April Smith Avatar asked Nov 16 '25 20:11

April Smith


2 Answers

I faced similar issue during my iOS development. I used

<input ..... autocapitalize="off" autocorrect="off"/>

and it worked fine.

like image 110
Satya Avatar answered Nov 19 '25 10:11

Satya


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;
like image 27
rdelmar Avatar answered Nov 19 '25 09:11

rdelmar