Uses of Interface
org.apache.wicket.markup.html.form.ILabelProvider
-
Packages that use ILabelProvider Package Description org.apache.wicket.ajax.markup.html.form org.apache.wicket.extensions.ajax.markup.html org.apache.wicket.extensions.ajax.markup.html.autocomplete org.apache.wicket.extensions.markup.html.form org.apache.wicket.extensions.markup.html.form.datetime org.apache.wicket.extensions.markup.html.form.palette org.apache.wicket.extensions.markup.html.form.palette.component org.apache.wicket.extensions.markup.html.form.select org.apache.wicket.extensions.wizard Package for working with Wizard components.org.apache.wicket.markup.html.form HTML Forms and form components.org.apache.wicket.markup.html.form.upload Support for upload forms (using multipart requests). -
-
Uses of ILabelProvider in org.apache.wicket.ajax.markup.html.form
Classes in org.apache.wicket.ajax.markup.html.form that implement ILabelProvider Modifier and Type Class Description class
AjaxButton
A button that submits the form via Ajax.class
AjaxCheckBox
A CheckBox which is updated via ajax when the user changes its valueclass
AjaxFallbackButton
An ajax submit button that will degrade to a normal request if ajax is not available or javascript is disabled. -
Uses of ILabelProvider in org.apache.wicket.extensions.ajax.markup.html
Classes in org.apache.wicket.extensions.ajax.markup.html that implement ILabelProvider Modifier and Type Class Description class
IndicatingAjaxButton
A variant of theAjaxButton
that displays a busy indicator while the ajax request is in progress. -
Uses of ILabelProvider in org.apache.wicket.extensions.ajax.markup.html.autocomplete
Classes in org.apache.wicket.extensions.ajax.markup.html.autocomplete that implement ILabelProvider Modifier and Type Class Description class
AutoCompleteTextField<T>
An implementation of a textfield with the autoassist ajax behaviorAutoCompleteBehavior
.class
DefaultCssAutoCompleteTextField<T>
AnAutoCompleteTextField
which automatically includes the default CSS for the suggestions. -
Uses of ILabelProvider in org.apache.wicket.extensions.markup.html.form
Classes in org.apache.wicket.extensions.markup.html.form that implement ILabelProvider Modifier and Type Class Description class
DateTextField
A TextField that is mapped to ajava.util.Date
object. -
Uses of ILabelProvider in org.apache.wicket.extensions.markup.html.form.datetime
Classes in org.apache.wicket.extensions.markup.html.form.datetime that implement ILabelProvider Modifier and Type Class Description class
LocalDateTextField
A TextField that is mapped to ajava.time.LocalDate
object and that uses java.time time to parse and format values.class
LocalDateTimeField
Works on aLocalDateTime
object.class
LocalDateTimeTextField
A TextField that is mapped to ajava.time.LocalDateTime
object and that uses java.time time to parse and format values.class
LocalTimeTextField
A TextField that is mapped to ajava.time.LocalTime
object and that uses java.time time to parse and format values.class
TimeField
Works on aLocalTime
object.class
ZonedDateTimeField
Works on aZonedDateTime
object. -
Uses of ILabelProvider in org.apache.wicket.extensions.markup.html.form.palette
Classes in org.apache.wicket.extensions.markup.html.form.palette that implement ILabelProvider Modifier and Type Class Description class
Palette<T>
Palette is a component that allows the user to easily select and order multiple items by moving them from one select box into another. -
Uses of ILabelProvider in org.apache.wicket.extensions.markup.html.form.palette.component
Classes in org.apache.wicket.extensions.markup.html.form.palette.component that implement ILabelProvider Modifier and Type Class Description class
AbstractOptions<T>
Generates html option elements based on iterator specified by getOptionsIterator() and IChoiceRender specified by the paletteclass
Choices<T>
select box containing all available choices of the paletteclass
Recorder<T>
Component to keep track of selections on the html side.class
Selection<T>
select box containing selected choices of the palette -
Uses of ILabelProvider in org.apache.wicket.extensions.markup.html.form.select
Classes in org.apache.wicket.extensions.markup.html.form.select that implement ILabelProvider Modifier and Type Class Description class
Select<T>
Component that represents a<select>
box. -
Uses of ILabelProvider in org.apache.wicket.extensions.wizard
Classes in org.apache.wicket.extensions.wizard that implement ILabelProvider Modifier and Type Class Description class
CancelButton
Models a cancel button in the wizard.class
FinishButton
Models a cancel button in the wizard.class
LastButton
Models a 'last' button in the wizard.class
NextButton
Models a next button in the wizard.class
PreviousButton
Models a previous button in the wizard.class
WizardButton
Base class for buttons that work withthe wizard component
. -
Uses of ILabelProvider in org.apache.wicket.markup.html.form
Classes in org.apache.wicket.markup.html.form that implement ILabelProvider Modifier and Type Class Description class
AbstractCheckSelector
Base class for all Javascript-based "select-all" checkboxes.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
Check<T>
Component representing a single checkbox choice in a org.apache.wicket.markup.html.form.CheckGroup.class
CheckBox
HTML checkbox input component.class
CheckBoxMultipleChoice<T>
A choice subclass that shows choices via checkboxes.class
CheckboxMultipleChoiceSelector
A Javascript-based "Select All" checkbox component that works withCheckBoxMultipleChoice
.class
CheckBoxSelector
A Javascript-based "Select All" checkbox component that works with a loose collection ofCheckBox
components.class
CheckGroup<T>
Component used to connect instances of Check components into a group.class
CheckGroupSelector
Selects and deselects all Check components under the same CheckGroup as itself.class
DropDownChoice<T>
A choice implemented as a dropdown menu/list.class
EmailTextField
ATextField
for HTML5 <input> with type email.class
FormComponent<T>
An HTML form component knows how to validate itself.class
FormComponentPanel<T>
Panel (has it's own markup, defined between <wicket:panel> tags), that can act as a form component.class
GroupedDropDownChoice<T>
Convenience class for generating dropdown choices with option groups.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 - likeButton
only with an image.class
LabeledWebMarkupContainer
Default implementation ofILabelProvider
.class
ListChoice<T>
Essentially a drop down choice that doesn't drop down.class
ListMultipleChoice<T>
A multiple choice list component.class
NumberTextField<N extends Number & Comparable<N>>
ATextField
for HTML5 <input> with type number.class
PasswordTextField
A password text field component.class
Radio<T>
Component representing a single radio choice in a org.apache.wicket.markup.html.form.RadioGroup.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
RangeTextField<N extends Number & Comparable<N>>
ATextField
for HTML5 <input> with type range.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.class
UrlTextField
ATextField
for HTML5 <input> with type url. -
Uses of ILabelProvider in org.apache.wicket.markup.html.form.upload
Classes in org.apache.wicket.markup.html.form.upload that implement ILabelProvider Modifier and Type Class Description 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.
-