Examples of AjaxIconButtonPanel


Examples of org.projectforge.web.wicket.flowlayout.AjaxIconButtonPanel

    final String pattern = DateFormats.getFormatString(DateFormatType.DATE_TIME_MINUTES);
    add(new Label("startDate", "Start: " + DateFormatUtils.format(start.getMillis(), pattern)));
    add(new Label("endDate", "Ende: " + DateFormatUtils.format(end.getMillis(), pattern)));

    final AjaxIconButtonPanel iconButton = new AjaxIconButtonPanel("delete", IconType.REMOVE) {
      private static final long serialVersionUID = -2464985733387718199L;

      /**
       * @see org.projectforge.web.wicket.flowlayout.AjaxIconButtonPanel#onSubmit(org.apache.wicket.ajax.AjaxRequestTarget)
       */
 
View Full Code Here

Examples of org.projectforge.web.wicket.flowlayout.AjaxIconButtonPanel

          dialog.redraw().addContent(target);
        }
      }
    });

    final IconButtonPanel calendarButtonPanel = new AjaxIconButtonPanel(buttonGroupPanel.newChildId(), IconType.EDIT, new ResourceModel(
        "plugins.teamcal.calendar.filter.edit")) {
      /**
       * @see org.projectforge.web.wicket.flowlayout.AjaxIconButtonPanel#onSubmit(org.apache.wicket.ajax.AjaxRequestTarget)
       */
      @Override
      protected void onSubmit(final AjaxRequestTarget target)
      {
        dialog.open(target);
        // Redraw the content:
        dialog.redraw().addContent(target);
      }
    };
    calendarButtonPanel.setDefaultFormProcessing(false);
    buttonGroupPanel.addButton(calendarButtonPanel);

    fieldset.add(new DropIcsPanel(fieldset.newChildId()) {

      @Override
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.