Top

PasswordField

Contents

PasswordField widget creates an input text field of type password. It has the same features as TextField widget, but the characters in the field are masked exactly like in a plain password input.

File /widgets/passwordfield/Snippet.tpl
{@aria:PasswordField {

  label : "Your password: ",
  bind : {
    value : {
      inside : data,
      to: "password"
    }
  }

}/}

The whole list of configuration parameters is available in PasswordFieldCfg bean.

Features

Features such as bindings and transforms, styling and validation is done exactly in the same way as TextField widget.

The only constraint is that PasswordField does not allow the use of helptext.

This page was last modified on 19 April 2012, at 15:25 and has been viewed 633 times.