[TIMOB-11850] BlackBerry: TextField Password Mask
| GitHub Issue | n/a |
|---|---|
| Type | Story |
| Priority | High |
| Status | Closed |
| Resolution | Fixed |
| Resolution Date | 2012-11-24T20:11:39.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | Release 3.1.0, 2012 Sprint 24, BB Preview 3 |
| Components | n/a |
| Labels | n/a |
| Reporter | Josh Roesslein |
| Assignee | Josh Roesslein |
| Created | 2012-11-24T20:08:31.000+0000 |
| Updated | 2017-03-08T18:26:38.000+0000 |
Description
As a developer, I want the ability to mark a textfield
containing sensitive information (ex: password) so that it is
masked to hide previously typed characters.
Acceptance Test
Pass: TextField is visible and previously typed characters are masked out.var win = Ti.UI.createWindow(); var textField = Ti.UI.createTextField({ passwordMask: true, width: 200 }); win.add(textField); win.open();Closing ticket as resolved.