Uses of Class
org.apache.wicket.markup.html.form.AbstractTextComponent
-
Packages that use AbstractTextComponent Package Description org.apache.wicket.markup.html Base package of HTML markup.org.apache.wicket.markup.html.form HTML Forms and form components. -
-
Uses of AbstractTextComponent in org.apache.wicket.markup.html
Methods in org.apache.wicket.markup.html with parameters of type AbstractTextComponent Modifier and Type Method Description protected voidHTML5Attributes. onInput(AbstractTextComponent<?> input, ComponentTag tag)Writes HTML5 attributes forAbstractTextComponentinputs:requiredif componentFormComponent.isRequired()placeholderforLabeledWebMarkupContainer.getLabel()patternforAbstractTextComponents with aPatternValidator -
Uses of AbstractTextComponent in org.apache.wicket.markup.html.form
Subclasses of AbstractTextComponent in org.apache.wicket.markup.html.form Modifier and Type Class Description classEmailTextFieldATextFieldfor HTML5 <input> with type email.classHiddenField<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.classNumberTextField<N extends java.lang.Number & java.lang.Comparable<N>>ATextFieldfor HTML5 <input> with type number.classPasswordTextFieldA password text field component.classRangeTextField<N extends java.lang.Number & java.lang.Comparable<N>>ATextFieldfor HTML5 <input> with type range.classRequiredTextField<T>A text field which automatically adds a Required.classTextArea<T>Multi-row text editing component.classTextField<T>A simple text field.classUrlTextFieldATextFieldfor HTML5 <input> with type url.
-