Examples of DatePanel


Examples of org.projectforge.web.wicket.components.DatePanel

  @Override
  protected void onOptionsPanelCreate(final FieldsetPanel optionsFieldsetPanel, final DivPanel optionsCheckBoxesPanel)
  {
    {
      optionsFieldsetPanel.setOutputMarkupId(true);
      startDate = new DatePanel(optionsFieldsetPanel.newChildId(), new PropertyModel<Date>(getSearchFilter(), "startDate"),
          DatePanelSettings.get().withSelectPeriodMode(true));
      optionsFieldsetPanel.add(dependentFormComponents[0] = startDate);
      optionsFieldsetPanel.setLabelFor(startDate);
      optionsFieldsetPanel.add(new DivTextPanel(optionsFieldsetPanel.newChildId(), " - "));
      endDate = new DatePanel(optionsFieldsetPanel.newChildId(), new PropertyModel<Date>(getSearchFilter(), "endDate"), DatePanelSettings
          .get().withSelectPeriodMode(true));
      optionsFieldsetPanel.add(dependentFormComponents[1] = endDate);
      {
        final SubmitLink unselectPeriod = new SubmitLink(IconLinkPanel.LINK_ID) {
          @Override
View Full Code Here

Examples of org.projectforge.web.wicket.components.DatePanel

  {
    super.init();
    {
      // Date of payment
      final FieldsetPanel fs = gridBuilder.newFieldset(LiquidityEntryDO.class, "dateOfPayment");
      final DatePanel dateOfPayment = new DatePanel(fs.newChildId(), new PropertyModel<Date>(data, "dateOfPayment"), DatePanelSettings
          .get().withTargetType(java.sql.Date.class));
      fs.add(dateOfPayment);
      if (isNew() == true) {
        dateOfPayment.setFocus();
      }
    }
    {
      // Amount
      final FieldsetPanel fs = gridBuilder.newFieldset(LiquidityEntryDO.class, "amount");
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.