Re: [web2py] Do not mask password field

2014-06-14 Thread Niphlod
yep, and that's why the "usual" works out of the box in mobiles just as you describe. If you want to replicate the same behaviour even for desktop browsers, you need to override the standard "password" input with your own. -- Resources: - http://web2py.com - http://web2py.com/book (Documenta

Re: [web2py] Do not mask password field

2014-06-13 Thread Kenneth
Thank you Marin, that did it. Rob, the form is for creating new users and client complains about not seeing the password. Kenneth Den lördagen den 14:e juni 2014 kl. 01:31:15 UTC+3 skrev Marin Pranjić: > > Can you try if this works? > > db.auth_user.password.type = 'string' > > > On Sat, J

Re: [web2py] Do not mask password field

2014-06-13 Thread Marin Pranjić
Can you try if this works? db.auth_user.password.type = 'string' On Sat, Jun 14, 2014 at 12:26 AM, Dave S wrote: > > > On Friday, June 13, 2014 2:09:59 PM UTC-7, Robert O'Connor wrote: >> >> You could do it via js likely...but better question is why do you want >> this? >> >> --Rob >> Sent fro

Re: [web2py] Do not mask password field

2014-06-13 Thread Dave S
On Friday, June 13, 2014 2:09:59 PM UTC-7, Robert O'Connor wrote: > > You could do it via js likely...but better question is why do you want > this? > > --Rob > Sent from my phone...excuse any typos please! > Well, that there points to one reason ;-) (It's not unusual for mobile apps to brief

Re: [web2py] Do not mask password field

2014-06-13 Thread Robby O'Connor
You could do it via js likely...but better question is why do you want this? --Rob Sent from my phone...excuse any typos please! On Jun 13, 2014 5:08 PM, "Kenneth" wrote: > Hello, > > I'm pretty sure this is a stupid question but I just can't get it working. > > I have created a form to edit a u

[web2py] Do not mask password field

2014-06-13 Thread Kenneth
Hello, I'm pretty sure this is a stupid question but I just can't get it working. I have created a form to edit a user in auth_user, so one field is password. Is it possible in controller disable the masking of the values in the password, when entering a new password? Kenneth -- Resource