Uses of Interface
org.kuali.rice.krad.uif.field.InputField
Packages that use InputField
Package
Description
-
Uses of InputField in org.kuali.rice.krad.lookup
Classes in org.kuali.rice.krad.lookup that implement InputFieldModifier and TypeClassDescriptionclassCustomInputFieldfor criteria fields within a lookup view that adds criteria specific options.Methods in org.kuali.rice.krad.lookup that return types with arguments of type InputFieldModifier and TypeMethodDescriptionprotected Map<String, InputField> LookupableImpl.getCriteriaFieldsForValidation(LookupView lookupView, LookupForm form) Returns the criteria fields in a map keyed by the field property name.Methods in org.kuali.rice.krad.lookup with parameters of type InputFieldModifier and TypeMethodDescriptionvoidLookupable.buildMultiValueSelectField(InputField selectField, Object model) Set the value for the input field control to contain the field conversion values for the line.voidLookupableImpl.buildMultiValueSelectField(InputField selectField, Object model) Set the value for the input field control to contain the field conversion values for the line. -
Uses of InputField in org.kuali.rice.krad.uif.container
Methods in org.kuali.rice.krad.uif.container that return InputFieldModifier and TypeMethodDescriptionDialogGroup.getExplanation()Input field use to gather explanation text with the dialog.Methods in org.kuali.rice.krad.uif.container with parameters of type InputFieldModifier and TypeMethodDescriptionvoidDialogGroup.setExplanation(InputField explanation) protected voidCollectionGroupLineBuilder.setupAddLineControlValidation(InputField lineField, List<String> selectors, String suffix) Add additional information to a field in the add line to allow for correct add control selection.protected booleanGroupBase.validateInputField(InputField inputField) Helper method to determine whether the given input field needs validated or not.Method parameters in org.kuali.rice.krad.uif.container with type arguments of type InputFieldModifier and TypeMethodDescriptionprotected StringGroupBase.buildInputFieldValidationActionScript(List<InputField> allInputFields, List<String> excludedFields) Helper method to build action script for input fields with actions that depend on the validation of other input fields in the same group. -
Uses of InputField in org.kuali.rice.krad.uif.control
Methods in org.kuali.rice.krad.uif.control with parameters of type InputFieldModifier and TypeMethodDescriptionprotected voidGroupControl.buildGroupQuickfinder(Object model, InputField field) protected voidUserControl.buildUserQuickfinder(Object model, InputField field) Configures the field's quickfinder for a user lookupList<org.kuali.rice.core.api.util.KeyValue> UifKeyValuesFinder.getKeyValues(ViewModel model, InputField field) Builds a list of key values representations for valid value selections using the given view model to retrieve values from other fields and conditionally building the optionsList<org.kuali.rice.core.api.util.KeyValue> UifKeyValuesFinderBase.getKeyValues(ViewModel model, InputField field) Builds a list of key values representations for valid value selections using the given view model to retrieve values from other fields and conditionally building the options -
Uses of InputField in org.kuali.rice.krad.uif.field
Classes in org.kuali.rice.krad.uif.field that implement InputFieldModifier and TypeClassDescriptionclassField that encapsulates data input/output captured by an attribute within the applicationMethods in org.kuali.rice.krad.uif.field that return types with arguments of type InputFieldModifier and TypeMethodDescriptionRemoteFieldsHolder.fetchAndTranslateRemoteFields(Container parent) Invokes the configured fetching method to retrieve a list of remotable fields, then invoked theComponentFactoryto translate the fields, and finally sets up the binding for the attribute fields -
Uses of InputField in org.kuali.rice.krad.uif.util
Methods in org.kuali.rice.krad.uif.util that return InputFieldModifier and TypeMethodDescriptionstatic InputFieldComponentFactory.getInputField()Retrieves a new input field instance from Spring (initialized by the bean definition with the given id)static InputFieldComponentFactory.getInputField(String propertyName, String label) Retrieves a new input field instance from Spring (initialized by the bean definition with the given id) and sets the property name and label to the given parametersstatic InputFieldComponentFactory.getInputField(String propertyName, String label, UifConstants.ControlType controlType) Retrieves a new input field instance from Spring (initialized by the bean definition with the given id) and sets the property name, control, and label to the given parametersstatic InputFieldComponentFactory.getInputField(String propertyName, String label, UifConstants.ControlType controlType, int size, int maxLength, int minLength) Retrieves a new input field instance from Spring (initialized by the bean definition with the given id) and sets the property name, control, size, min and max length, and label to the given parametersstatic InputFieldComponentFactory.getInputField(String propertyName, String label, UifConstants.ControlType controlType, Class<? extends org.kuali.rice.krad.keyvalues.KeyValuesFinder> optionsFinderClass) Retrieves a new input field instance from Spring (initialized by the bean definition with the given id) and sets the property name, control, options finder, and label to the given parametersstatic InputFieldComponentFactory.getInputField(String propertyName, String label, UifConstants.ControlType controlType, String defaultValue) Retrieves a new input field instance from Spring (initialized by the bean definition with the given id) and sets the property name, control, defaultValue, and label to the given parametersstatic InputFieldComponentFactory.getInputField(String propertyName, String label, UifConstants.ControlType controlType, List<org.kuali.rice.core.api.util.KeyValue> options) Retrieves a new input field instance from Spring (initialized by the bean definition with the given id) and sets the property name, control, options, and label to the given parametersstatic InputFieldComponentFactory.translateRemotableField(org.kuali.rice.core.api.uif.RemotableAttributeField remotableField) Builds a newInputFieldfrom the properties set on the givenRemotableAttributeFieldMethods in org.kuali.rice.krad.uif.util that return types with arguments of type InputFieldModifier and TypeMethodDescriptionstatic List<InputField> ComponentUtils.getAllInputFieldsWithinContainer(Container container) Gets all the input fields contained in this container, but also in every sub-container that is a child of this container.static List<InputField> ComponentFactory.translateRemotableFields(List<org.kuali.rice.core.api.uif.RemotableAttributeField> remotableFields) For each remotable field in the given list creates a newInputFieldinstance and sets the corresponding properties from the remotable instanceMethods in org.kuali.rice.krad.uif.util with parameters of type InputFieldModifier and TypeMethodDescriptionstatic voidClientValidationUtils.addScriptToPage(View view, InputField field, String script) Adds the script to the view to execute on a jQuery document ready event.static StringClientValidationUtils.getRegexMethod(InputField field, ValidCharactersConstraint validCharactersConstraint) Returns the add method jquery validator call for the regular expression stored in validCharactersConstraint.static StringClientValidationUtils.getRegexMethod(InputField field, ValidCharactersConstraint validCharactersConstraint, boolean escape) Returns the add method jquery validator call for the regular expression stored in validCharactersConstraint.static StringClientValidationUtils.getRegexMethodWithBooleanCheck(InputField field, ValidCharactersConstraint validCharactersConstraint) Returns the add method jquery validator call for the regular expression stored in validCharactersConstraint that explicitly checks a boolean.static voidClientValidationUtils.processAndApplyConstraints(InputField field, View view, Object model) This method processes all the constraints on the InputField passed in and adds all the necessary jQuery and js required (validator's rules, methods, and messages) to the View's onDocumentReady call.static voidClientValidationUtils.processCaseConstraint(InputField field, View view, CaseConstraint constraint, String andedCase, String validationState, StateMapping stateMapping) This method processes a single CaseConstraint.static voidClientValidationUtils.processMustOccurConstraint(InputField field, View view, MustOccurConstraint mc, String booleanStatement) This method processes the MustOccurConstraint.static voidClientValidationUtils.processPrerequisiteConstraint(InputField field, PrerequisiteConstraint constraint, View view) Simpler version of processPrerequisiteConstraintstatic voidClientValidationUtils.processPrerequisiteConstraint(InputField field, PrerequisiteConstraint constraint, View view, String booleanStatement) Processes a Prerequisite constraint that should be applied when the booleanStatement passed in evaluates to true. -
Uses of InputField in org.kuali.rice.krad.uif.widget
Methods in org.kuali.rice.krad.uif.widget with parameters of type InputFieldModifier and TypeMethodDescriptionprotected org.kuali.rice.krad.bo.DataObjectRelationshipQuickFinder.getRelationshipForField(View view, Object model, InputField field) Retrieves anyDataObjectRelationshipthat is associated with the given field and has a configured lookup view.protected voidQuickFinder.setupForInputField(View view, Object model, InputField inputField) If quickfinder not manually configured attempts to find a relationship to build the quickfinder on, then also adjusts the path for any configured field conversions, lookup parameters, and refresh refreshes.