Hi man, in my RUI project I have setup a Login widget like below:
// These are the actual fields where the user will type their data (the "View" part of the "MVC" pattern). usernameField TextField{ maxLength = 100};passwordField PasswordTextField{ maxLength = 10}; // The Controllers that link the models with their views and handle formatting and validation.usernameController Controller { @MVC { model = utente.UUsername, view = usernameField }, validators = [userIDValidator]};passwordController Controller { @MVC { model = utente.uPwd, view = passwordField }, validators = [PasswordValidator]}; loginform ValidatingForm { entries = [ new FormField { displayName="* Username:", controller = usernameController }, new FormField { displayName="* Password:", controller = passwordController } ]};
Is possible to set a placeholder on passwordTextField element.
Or how to use DojoTextField for password field and set it's input type= password ?
Some idea?
@Marcel-D2700076G6X @markevans120000NQBF
Matteo@MR