Package fr.openwide.maven.artifact.notifier.web.application.common.component

Examples of fr.openwide.maven.artifact.notifier.web.application.common.component.LocaleDropDownChoice


    confirmPasswordField = new PasswordTextField("confirmPassword", Model.of(""));
    confirmPasswordField.setLabel(new ResourceModel("administration.user.field.confirmPassword"));
    confirmPasswordField.setRequired(true);
    passwordContainer.add(confirmPasswordField);
   
    LocaleDropDownChoice localeField = new LocaleDropDownChoice("locale", BindingModel.of(userForm.getModel(), Binding.user().locale()));
    localeField.setLabel(new ResourceModel("administration.user.field.locale"));
    userForm.add(localeField);
   
    return body;
  }
View Full Code Here

TOP

Related Classes of fr.openwide.maven.artifact.notifier.web.application.common.component.LocaleDropDownChoice

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.