Symptoms
Password control
Diagnoses
How do I set the textbox option to mask the text to appear masked, just like when typing a password?
Resolution
The solution to this issue is to insert a data label into the view. In the 'Text' portion of the properties insert the script pasted below.
<script> $('input$name="Text Box"]').get(0).type = 'password' </script>
"Text Box" should equated to the name of the text box is intended to be masked.