Uses of Class
org.apache.wicket.markup.html.form.FormComponent

Packages that use FormComponent
org.apache.wicket.ajax.form   
org.apache.wicket.ajax.markup.html.form   
org.apache.wicket.markup.html.form HTML Forms and form components. 
org.apache.wicket.markup.html.form.persistence Persistence support for forms. 
org.apache.wicket.markup.html.form.upload Support for upload forms (using multipart requests). 
org.apache.wicket.markup.html.form.validation Support for form validation. 
org.apache.wicket.util.tester A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. 
org.apache.wicket.validation.validator This package provides an implementation of Wicket's validation support. 
 

Uses of FormComponent in org.apache.wicket.ajax.form
 

Methods in org.apache.wicket.ajax.form that return FormComponent
protected  FormComponent<?> AjaxFormComponentUpdatingBehavior.getFormComponent()
           
protected  FormComponent<?> AjaxFormChoiceComponentUpdatingBehavior.getFormComponent()
           
 

Uses of FormComponent in org.apache.wicket.ajax.markup.html.form
 

Subclasses of FormComponent in org.apache.wicket.ajax.markup.html.form
 class AjaxButton
          A button that submits the form via ajax.
 class AjaxCheckBox
          A CheckBox which is updated via ajax when the user changes its value
 class AjaxFallbackButton
          An ajax submit button that will degrade to a normal request if ajax is not available or javascript is disabled.
 class AjaxSubmitButton
          Deprecated. Use AjaxButton instead.
 

Uses of FormComponent in org.apache.wicket.markup.html.form
 

Subclasses of FormComponent in org.apache.wicket.markup.html.form
 class AbstractChoice<T,E>
          Abstract base class for all choice (html select) options.
 class AbstractSingleSelectChoice<T>
          Abstract base class for single-select choices.
 class AbstractTextComponent<T>
          Abstract base class for TextArea and TextField.
 class Button
          A form button.
 class CheckBox
          HTML checkbox input component.
 class CheckBoxMultipleChoice<T>
          A choice subclass that shows choices via checkboxes.
 class CheckGroup<T>
          Component used to connect instances of Check components into a group.
 class DropDownChoice<T>
          A choice implemented as a dropdown menu/list.
 class FormComponentPanel<T>
          Panel (has it's own markup, defined between tags), that can act as a form component.
 class HiddenField<T>
          TextField doesn't permit the html so this is a simple subclass to allow this A HiddenField is useful when you have a javascript based component that updates the form state.
 class ImageButton
          <input type="image"> component - like Button only with an image.
 class ListChoice<T>
          Essentially a drop down choice that doesn't drop down.
 class ListMultipleChoice<T>
          A multiple choice list component.
 class PasswordTextField
          A password text field component.
 class RadioChoice<T>
          A choice subclass that shows choices in radio style.
 class RadioGroup<T>
          Component used to connect instances of Radio components into a group.
 class RequiredTextField<T>
          A text field which automatically adds a Required.
 class TextArea<T>
          Multi-row text editing component.
 class TextField<T>
          A simple text field.
 

Methods in org.apache.wicket.markup.html.form that return FormComponent
 FormComponent<T> FormComponent.add(IValidator<T>... validators)
          Adds a validator to this form component.
 FormComponent<T> FormComponent.add(IValidator<T> validator)
          Adds a validator to this form component
 FormComponent<T> AbstractTextComponent.setConvertEmptyInputStringToNull(boolean flag)
          Should the bound object become null when the input is empty?
 FormComponent<T> FormComponent.setLabel(IModel<java.lang.String> labelModel)
          The value will be made available to the validator property by means of ${label}.
 FormComponent<T> FormComponent.setPersistent(boolean persistent)
          Sets whether this component is to be persisted.
 FormComponent<T> FormComponent.setRequired(boolean required)
          Sets the required flag
 FormComponent<T> FormComponent.setType(java.lang.Class<?> type)
          Sets the type that will be used when updating the model for this component.
 

Methods in org.apache.wicket.markup.html.form with parameters of type FormComponent
protected abstract  void FormComponent.AbstractVisitor.onFormComponent(FormComponent<?> formComponent)
           
abstract  void Form.ValidationVisitor.validate(FormComponent<?> formComponent)
          Callback that should be used to validate form component
 

Uses of FormComponent in org.apache.wicket.markup.html.form.persistence
 

Methods in org.apache.wicket.markup.html.form.persistence with parameters of type FormComponent
 void CookieValuePersister.clear(FormComponent<?> formComponent)
           
 void IValuePersister.clear(FormComponent<?> formComponent)
          Deprecated. Remove the key/value associated witht the formComponent
 void CookieValuePersister.load(FormComponent<?> formComponent)
           
 void IValuePersister.load(FormComponent<?> formComponent)
          Deprecated. Retrieve the persisted value and if found update the form components model
 void CookieValuePersister.save(FormComponent<?> formComponent)
           
 void IValuePersister.save(FormComponent<?> formComponent)
          Deprecated. Convenience method for FormComponent.
 

Uses of FormComponent in org.apache.wicket.markup.html.form.upload
 

Subclasses of FormComponent in org.apache.wicket.markup.html.form.upload
 class FileUploadField
          Form component that corresponds to a <input type="file">.
 class MultiFileUploadField
          Form component that allows the user to select multiple files to upload via a single <input type="file"/> field.
 

Uses of FormComponent in org.apache.wicket.markup.html.form.validation
 

Methods in org.apache.wicket.markup.html.form.validation that return FormComponent
 FormComponent<?>[] EqualInputValidator.getDependentFormComponents()
           
 FormComponent<?>[] IFormValidator.getDependentFormComponents()
           
 

Methods in org.apache.wicket.markup.html.form.validation with parameters of type FormComponent
 void AbstractFormValidator.error(FormComponent<?> fc)
          Reports an error against validatable using the map returned by AbstractFormValidator.variablesMap()for variable interpolations and message key returned by AbstractFormValidator.resourceKey().
 void AbstractFormValidator.error(FormComponent<?> fc, java.util.Map<java.lang.String,java.lang.Object> vars)
          Reports an error against the validatable using the given map for variable interpolations and message resource key provided by AbstractFormValidator.resourceKey()
 void AbstractFormValidator.error(FormComponent<?> fc, java.lang.String resourceKey)
          Reports an error against the validatable using the given resource key
 void AbstractFormValidator.error(FormComponent<?> fc, java.lang.String resourceKey, java.util.Map<java.lang.String,java.lang.Object> vars)
          Reports an error against the validatable using the specified resource key and variable map
 

Constructors in org.apache.wicket.markup.html.form.validation with parameters of type FormComponent
EqualInputValidator(FormComponent<?> formComponent1, FormComponent<?> formComponent2)
          Construct.
EqualInputValidator(FormComponent<?> formComponent1, FormComponent<?> formComponent2)
          Construct.
EqualPasswordInputValidator(FormComponent<?> formComponent1, FormComponent<?> formComponent2)
          Construct.
EqualPasswordInputValidator(FormComponent<?> formComponent1, FormComponent<?> formComponent2)
          Construct.
 

Uses of FormComponent in org.apache.wicket.util.tester
 

Methods in org.apache.wicket.util.tester with parameters of type FormComponent
protected abstract  void FormTester.ChoiceSelector.assignValueToFormComponent(FormComponent<?> formComponent, java.lang.String value)
          Implements whether toggle or accumulate the selection.
 

Constructors in org.apache.wicket.util.tester with parameters of type FormComponent
FormTester.ChoiceSelector(FormComponent<?> formComponent)
          Constructor.
 

Uses of FormComponent in org.apache.wicket.validation.validator
 

Methods in org.apache.wicket.validation.validator with parameters of type FormComponent
protected  java.util.Map<java.lang.String,java.lang.Object> AbstractValidator.messageModel(FormComponent<T> formComponent)
          Deprecated. use AbstractValidator.variablesMap(IValidatable) instead
protected  java.lang.String AbstractValidator.resourceKey(FormComponent<T> formComponent)
          Deprecated. use AbstractValidator.resourceKey() instead
 void AbstractValidator.validate(FormComponent<T> component)
          Deprecated. use AbstractValidator.variablesMap(IValidatable) instead
 



Copyright © 2004-2009 Apache Software Foundation. All Rights Reserved.