Uses of Class
org.apache.wicket.markup.html.form.Form
-
Packages that use Form Package Description 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.validation Support for form validation.org.apache.wicket.markup.html.pages Default special purpose pages for error and feedback support.org.apache.wicket.util.tester A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. -
-
Uses of Form in org.apache.wicket.ajax.form
Methods in org.apache.wicket.ajax.form that return Form Modifier and Type Method Description protected Form<?>AjaxFormSubmitBehavior. findForm()Finds form that will be submittedForm<?>AjaxFormSubmitBehavior.AjaxFormSubmitter. getForm()Form<?>AjaxFormSubmitBehavior. getForm()Constructors in org.apache.wicket.ajax.form with parameters of type Form Constructor Description AjaxFormSubmitBehavior(Form<?> form, java.lang.String event)Construct. -
Uses of Form in org.apache.wicket.ajax.markup.html.form
Methods in org.apache.wicket.ajax.markup.html.form that return Form Modifier and Type Method Description Form<?>AjaxButton. getForm()Returns the form if it was set in constructor, otherwise returns the form nearest in parent hierarchy.Form<?>AjaxFallbackButton. getForm()Methods in org.apache.wicket.ajax.markup.html.form with parameters of type Form Modifier and Type Method Description protected AjaxFormSubmitBehaviorAjaxFallbackButton. newAjaxEventBehavior(Form<?> form, java.lang.String event)Constructors in org.apache.wicket.ajax.markup.html.form with parameters of type Form Constructor Description AjaxButton(java.lang.String id, Form<?> form)Construct.AjaxButton(java.lang.String id, IModel<java.lang.String> model, Form<?> form)Construct.AjaxFallbackButton(java.lang.String id, Form<?> form)Construct.AjaxFallbackButton(java.lang.String id, IModel<java.lang.String> model, Form<?> form)Construct.AjaxSubmitLink(java.lang.String id, Form<?> form)Construct. -
Uses of Form in org.apache.wicket.markup.html.form
Subclasses of Form in org.apache.wicket.markup.html.form Modifier and Type Class Description classStatelessForm<T>This StatelessForm is the same as a normal form but with the statelesshint default to true.Methods in org.apache.wicket.markup.html.form that return Form Modifier and Type Method Description static Form<?>Form. findForm(Component component)Form<?>AbstractSubmitLink. getForm()Form<?>Button. getForm()Override to not throw exception if there is no parent form.Form<?>FormComponent. getForm()Form<?>IFormSubmitter. getForm()Returns the form this component submits.Form<?>Form. getRootForm()Returns the root form or this, if this is the root form.Constructors in org.apache.wicket.markup.html.form with parameters of type Form Constructor Description AbstractSubmitLink(java.lang.String id, Form<?> form)Construct.AbstractSubmitLink(java.lang.String id, IModel<?> model, Form<?> form)Construct.SubmitLink(java.lang.String id, Form<?> form)With this constructor the SubmitLink will submit theFormthat is given when the link is clicked on.SubmitLink(java.lang.String id, IModel<?> model, Form<?> form)With this constructor the SubmitLink will submit theFormthat is given when the link is clicked on. -
Uses of Form in org.apache.wicket.markup.html.form.validation
Methods in org.apache.wicket.markup.html.form.validation with parameters of type Form Modifier and Type Method Description voidEqualInputValidator. validate(Form<?> form)voidFormValidatorAdapter. validate(Form<?> form)This method is ran if all components returned byIFormValidator.getDependentFormComponents()are valid.voidIFormValidator. validate(Form<?> form)This method is ran if all components returned byIFormValidator.getDependentFormComponents()are valid. -
Uses of Form in org.apache.wicket.markup.html.pages
Methods in org.apache.wicket.markup.html.pages that return Form Modifier and Type Method Description protected Form<ClientProperties>BrowserInfoForm. createForm(java.lang.String componentId, IModel<ClientProperties> properties)Creates the form -
Uses of Form in org.apache.wicket.util.tester
Methods in org.apache.wicket.util.tester that return Form Modifier and Type Method Description Form<?>FormTester. getForm()Retrieves the currentFormobject.Methods in org.apache.wicket.util.tester with parameters of type Form Modifier and Type Method Description voidBaseWicketTester. submitForm(Form<?> form)Submit the given form in the last renderedPageConstructors in org.apache.wicket.util.tester with parameters of type Form Constructor Description FormTester(java.lang.String path, Form<?> workingForm, BaseWicketTester wicketTester, boolean fillBlankString)
-