Package org.apache.wicket.markup.html.form

HTML Forms and form components.

See:
          Description

Interface Summary
AbstractTextComponent.ITextFormatProvider Text components that implement this interface are know to be able to provide a pattern for formatting output and parsing input.
FormComponent.IVisitor Typesafe interface to code that is called when visiting a form component.
IChoiceRenderer Renders one choice.
IFormSubmitListener Listener interface that is called when a form is submitted.
IFormSubmittingComponent Interface that must be implemented by components that are able to submit form.
IFormVisitorParticipant Participates in the form visiting algorithm, and can hint that visiting should go on as normal (IFormVisitorParticipant.processChildren() returns true) or is limited to the same level (only siblings are processed, IFormVisitorParticipant.processChildren() returns false).
ILabelProvider Provider of labels for FormComponents and others.
IOnChangeListener Listener method for OnChange events of dropdown lists and onclick events of CheckBoxes and RadioChoice components.
 

Class Summary
AbstractSingleSelectChoice Abstract base class for single-select choices.
AbstractSubmitLink Abstract class for links that are capable of submitting a form.
AbstractTextComponent Abstract base class for TextArea and TextField.
Button A form button.
Check Component representing a single checkbox choice in a org.apache.wicket.markup.html.form.CheckGroup.
CheckBox HTML checkbox input component.
CheckBoxMultipleChoice A choice subclass that shows choices via checkboxes.
CheckGroup Component used to connect instances of Check components into a group.
CheckGroupSelector Selects and deselects all Check components under the same CheckGroup as itself.
ChoiceRenderer Default implementation of IChoiceRenderer.
DropDownChoice A choice implemented as a dropdown menu/list.
Form Base class for forms.
Form.ValidationVisitor Visitor used for validation
FormComponent An HTML form component knows how to validate itself.
FormComponent.AbstractVisitor Visitor for traversing form components
FormComponentLabel A component that represents html <label> tag.
FormComponentPanel Panel (has it's own markup, defined between tags), that can act as a form component.
HiddenField 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.
ImageButton <input type="image"> component - like Button only with an image.
LabeledWebMarkupContainer Default implementation of ILabelProvider.
ListChoice Essentially a drop down choice that doesn't drop down.
ListMultipleChoice A multiple choice list component.
PasswordTextField A password text field component.
Radio Component representing a single radio choice in a org.apache.wicket.markup.html.form.RadioGroup.
RadioChoice A choice subclass that shows choices in radio style.
RadioGroup Component used to connect instances of Radio components into a group.
RequiredTextField A text field which automatically adds a Required.
SimpleFormComponentLabel A form component label that replaces its body with the contents of LabeledWebMarkupContainer.getLabel()
StatelessForm This StatelessForm is the same as a normal form but with the statelesshint default to true.
SubmitLink A link which can be used exactly like a Button to submit a Form.
TextArea Multi-row text editing component.
TextField A simple text field.
ValidationErrorFeedback This class is the parameter to Component.error(Serializable) instead of the generated error string itself (when FormComponent.error(IValidationError) is called).
 

Package org.apache.wicket.markup.html.form Description

HTML Forms and form components.



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