voua
Posts: 0
Joined: Sun Mar 25, 2012 1:33 am

Forcing lowercase for username and password fields

When working with some android phones, the first letters of common names are sometimes capitalized automatically. So the logic would be to force the username and password entered to a lowercase.

So far, I'm thinking I need to use the tolowercase function but am having problems with the syntax. Any ideas

maxkatz
Posts: 0
Joined: Fri Aug 13, 2010 3:24 pm

Forcing lowercase for username and password fields

When you map UI input to service input, run this JavaScript:

return value.toLowerCase();

http://help.gotiggr.com/documentation...

voua
Posts: 0
Joined: Sun Mar 25, 2012 1:33 am

Forcing lowercase for username and password fields

Works perfectly, thanks for your help.

Return to “Issues”