Examples of withMatchContains()


Examples of org.projectforge.web.wicket.autocompletion.PFAutoCompleteMaxLengthTextField.withMatchContains()

      protected List<String> getFavorites()
      {
        return trimResults(getTimesheetPrefData().getRecentLocations());
      }
    };
    locationTextField.withMatchContains(true).withMinChars(2).withFocus(true);
    fs.setStoreObject(locationTextField);
    fs.add(locationTextField);
    if (fs instanceof FieldsetPanel) {
      ((FieldsetPanel) fs).addKeyboardHelpIcon(getString("tooltip.autocomplete.withDblClickFunction"));
      ((FieldsetPanel) fs).addHelpIcon(getString("timesheet.location.tooltip"));
View Full Code Here

Examples of org.projectforge.web.wicket.autocompletion.PFAutoCompleteMaxLengthTextField.withMatchContains()

        protected List<String> getChoices(final String input)
        {
          return teamEventDao.getLocationAutocompletion(input, calendarsWithFullAccess);
        }
      };
      locationTextField.withMatchContains(true).withMinChars(3);
      fieldSet.add(locationTextField);
      if (access == false)
        fieldSet.setEnabled(false);
    }
    {
View Full Code Here

Examples of org.projectforge.web.wicket.autocompletion.PFAutoCompleteMaxLengthTextField.withMatchContains()

        protected List<String> getChoices(final String input)
        {
          return getBaseDao().getAutocompletion("organization", input);
        }
      };
      organizationField.withMatchContains(true).withMinChars(2).withFocus(true);
      WicketUtils.setStrong(organizationField);
      fs.add(organizationField);
    }
    {
      // Product
View Full Code Here

Examples of org.projectforge.web.wicket.autocompletion.PFAutoCompleteMaxLengthTextField.withMatchContains()

        protected List<String> getChoices(final String input)
        {
          return getBaseDao().getAutocompletion("product", input);
        }
      };
      productField.withMatchContains(true).withMinChars(2);
      productField.setRequired(true);
      WicketUtils.setStrong(productField);
      fs.add(productField);
    }
    {
View Full Code Here

Examples of org.projectforge.web.wicket.autocompletion.PFAutoCompleteMaxLengthTextField.withMatchContains()

        protected List<String> getChoices(final String input)
        {
          return getBaseDao().getAutocompletion("empfaenger", input);
        }
      };
      empfaengerTextField.withMatchContains(true).withMinChars(2).withFocus(true);
      empfaengerTextField.setRequired(true);
      WicketUtils.setStrong(empfaengerTextField);
      fs.add(empfaengerTextField);
    }
    {
View Full Code Here

Examples of org.projectforge.web.wicket.autocompletion.PFAutoCompleteMaxLengthTextField.withMatchContains()

        protected List<String> getChoices(final String input)
        {
          return getBaseDao().getAutocompletion("person", input);
        }
      };
      personTextField.withMatchContains(true).withMinChars(2);
      fs.add(personTextField);
    }
    {
      // Content
      final FieldsetPanel fs = gridBuilder.newFieldset(getString("orga.post.inhalt"));
View Full Code Here

Examples of org.projectforge.web.wicket.autocompletion.PFAutoCompleteMaxLengthTextField.withMatchContains()

        protected List<String> getChoices(final String input)
        {
          return getBaseDao().getAutocompletion("inhalt", input);
        }
      };
      inhaltTextField.withMatchContains(true).withMinChars(2);
      inhaltTextField.setRequired(true);
      fs.add(inhaltTextField);
    }
    {
      // Comment
View Full Code Here

Examples of org.projectforge.web.wicket.autocompletion.PFAutoCompleteMaxLengthTextField.withMatchContains()

        protected List<String> getChoices(final String input)
        {
          return getBaseDao().getAutocompletion("absender", input);
        }
      };
      absenderTextField.withMatchContains(true).withMinChars(2).withFocus(true);
      absenderTextField.setRequired(true);
      WicketUtils.setStrong(absenderTextField);
      fs.add(absenderTextField);
    }
    {
View Full Code Here

Examples of org.projectforge.web.wicket.autocompletion.PFAutoCompleteMaxLengthTextField.withMatchContains()

        protected List<String> getChoices(final String input)
        {
          return getBaseDao().getAutocompletion("person", input);
        }
      };
      personTextField.withMatchContains(true).withMinChars(2);
      fs.add(personTextField);
    }
    {
      // Content
      final FieldsetPanel fs = gridBuilder.newFieldset(getString("orga.post.inhalt"));
View Full Code Here

Examples of org.projectforge.web.wicket.autocompletion.PFAutoCompleteMaxLengthTextField.withMatchContains()

        protected List<String> getChoices(final String input)
        {
          return getBaseDao().getAutocompletion("inhalt", input);
        }
      };
      inhaltTextField.withMatchContains(true).withMinChars(2);
      inhaltTextField.setRequired(true);
      fs.add(inhaltTextField);
    }
    {
      // Content
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.