Examples of EmailLink


Examples of fr.openwide.core.wicket.markup.html.link.EmailLink

  public UserProfilPanel(String id, final IModel<User> userModel) {
    super(id, userModel);
   
    // Principal email address
    add(new EmailLink("email", BindingModel.of(userModel, Binding.user().email())));
   
    add(new Label("fullName", BindingModel.of(userModel, Binding.user().fullName())));
   
    add(new BooleanIcon("active", BindingModel.of(userModel, Binding.user().active())));
   
View Full Code Here

Examples of fr.openwide.core.wicket.markup.html.link.EmailLink

    Link<Void> userNameLink = AdministrationUserDescriptionPage.linkDescriptor(ReadOnlyModel.of(userModel)).link("userNameLink");
    userNameLink.add(new Label("userName", BindingModel.of(userModel, Binding.user().userName())));
    item.add(userNameLink);
    item.add(new Label("fullName", BindingModel.of(userModel, Binding.user().fullName())));
    item.add(new BooleanIcon("active", BindingModel.of(userModel, Binding.user().active())));
    item.add(new EmailLink("email", BindingModel.of(userModel, Binding.user().email())));
  }
View Full Code Here

Examples of fr.openwide.core.wicket.markup.html.link.EmailLink

    emailListView = new ListView<EmailAddress>("emails", emailAddressesModel) {
      private static final long serialVersionUID = 1L;
     
      @Override
      protected void populateItem(final ListItem<EmailAddress> item) {
        item.add(new EmailLink("emailLink", BindingModel.of(item.getModel(), Binding.emailAddress().email())));
        item.add(new EmailStatusIcon("emailStatus", BindingModel.of(item.getModel(), Binding.emailAddress().status())));
       
        item.add(new AjaxConfirmLink<EmailAddress>("deleteLink", item.getModel(),
            new ResourceModel("profile.deleteEmail.title"),
            new StringResourceModel("profile.deleteEmail.confirmation.text", item.getModel()),
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.