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

Packages that use Form
org.apache.wicket The core Wicket package. 
org.apache.wicket.ajax.form   
org.apache.wicket.ajax.markup.html.form   
org.apache.wicket.examples.guestbook   
org.apache.wicket.examples.library   
org.apache.wicket.examples.panels.signin   
org.apache.wicket.examples.signin   
org.apache.wicket.extensions.ajax.markup.html   
org.apache.wicket.extensions.ajax.markup.html.form.upload   
org.apache.wicket.extensions.markup.html.repeater.data.table.filter   
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.validation Support for form validation. 
org.apache.wicket.protocol.http HTTP implementation. 
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
 

Methods in org.apache.wicket with type parameters of type Form
<C extends Form<?>>
void
Page.removePersistedFormData(Class<C> formClass, boolean disablePersistence)
          Convenience method.
 

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

Methods in org.apache.wicket.ajax.form that return Form
protected  Form<?> AjaxFormSubmitBehavior.findForm()
          Finds the form this behavior is linked to
 Form<?> AjaxFormSubmitBehavior.getForm()
           
 

Methods in org.apache.wicket.ajax.form with parameters of type Form
static void AjaxFormValidatingBehavior.addToAllFormComponents(Form<?> form, String event)
          Adds this behavior to all form components of the specified form
static void AjaxFormValidatingBehavior.addToAllFormComponents(Form<?> form, String event, Duration throttleDelay)
          Adds this behavior to all form components of the specified form
 

Constructors in org.apache.wicket.ajax.form with parameters of type Form
AjaxFormSubmitBehavior(Form<?> form, String event)
          Construct.
AjaxFormValidatingBehavior(Form<?> form, 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
 Form<?> AjaxFallbackButton.getForm()
           
 Form<?> AjaxButton.getForm()
          Returns the form if it was set in constructor, otherwise returns the form nearest in parent hierarchy.
 

Methods in org.apache.wicket.ajax.markup.html.form with parameters of type Form
protected  void AjaxSubmitLink.onError(AjaxRequestTarget target, Form<?> form)
          Listener method invoked on form submit with errors
protected  void AjaxFallbackButton.onError(AjaxRequestTarget target, Form<?> form)
          Listener method invoked on form submit with errors
protected  void AjaxButton.onError(AjaxRequestTarget target, Form<?> form)
          Listener method invoked on form submit with errors
protected abstract  void AjaxSubmitLink.onSubmit(AjaxRequestTarget target, Form<?> form)
          Listener method invoked on form submit
protected abstract  void AjaxFallbackButton.onSubmit(AjaxRequestTarget target, Form<?> form)
          Callback for the onClick event.
protected abstract  void AjaxButton.onSubmit(AjaxRequestTarget target, Form<?> form)
          Listener method invoked on form submit with no errors
 

Constructors in org.apache.wicket.ajax.markup.html.form with parameters of type Form
AjaxButton(String id, Form<?> form)
          Construct.
AjaxButton(String id, IModel<String> model, Form<?> form)
          Construct.
AjaxFallbackButton(String id, Form<?> form)
          Construct.
AjaxFallbackButton(String id, IModel<String> model, Form<?> form)
          Construct.
AjaxSubmitButton(String id, Form<?> form)
          Deprecated. Use AjaxButton instead.
AjaxSubmitLink(String id, Form<?> form)
          Construct.
 

Uses of Form in org.apache.wicket.examples.guestbook
 

Subclasses of Form in org.apache.wicket.examples.guestbook
 class GuestBook.CommentForm
          A form that allows a user to add a comment.
 

Uses of Form in org.apache.wicket.examples.library
 

Subclasses of Form in org.apache.wicket.examples.library
static class EditBook.EditBookForm
          Form that edits a book
 

Uses of Form in org.apache.wicket.examples.panels.signin
 

Subclasses of Form in org.apache.wicket.examples.panels.signin
 class SignInPanel.SignInForm
          Sign in form.
 

Uses of Form in org.apache.wicket.examples.signin
 

Subclasses of Form in org.apache.wicket.examples.signin
 class SignIn.SignInForm
          Sign in form
 

Uses of Form in org.apache.wicket.extensions.ajax.markup.html
 

Constructors in org.apache.wicket.extensions.ajax.markup.html with parameters of type Form
IndicatingAjaxButton(String id, Form<?> form)
          Constructor
IndicatingAjaxButton(String id, IModel<String> model, Form<?> form)
          Constructor
IndicatingAjaxSubmitButton(String id, Form<?> form)
          Deprecated.  
 

Uses of Form in org.apache.wicket.extensions.ajax.markup.html.form.upload
 

Constructors in org.apache.wicket.extensions.ajax.markup.html.form.upload with parameters of type Form
UploadProgressBar(String id, Form<?> form)
          Constructor that will display the upload progress bar for every submit of the given form.
UploadProgressBar(String id, Form<?> form, FileUploadField fileUploadField)
          Constructor that will display the upload progress bar for submissions of the given form, that include a file upload in the given file upload field; i.e.
 

Uses of Form in org.apache.wicket.extensions.markup.html.repeater.data.table.filter
 

Subclasses of Form in org.apache.wicket.extensions.markup.html.repeater.data.table.filter
 class FilterForm<T>
          A form with filter-related special functionality for its form components.
 

Uses of Form in org.apache.wicket.extensions.wizard
 

Methods in org.apache.wicket.extensions.wizard that return Form
 Form<?> Wizard.getForm()
          Gets the form in which the view is nested, and on which the wizard buttons work.
protected
<E> Form<E>
Wizard.newForm(String id)
          Create a new form.
 

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

Subclasses of Form in org.apache.wicket.markup.html.form
 class StatelessForm<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
static Form<?> Form.findForm(Component component)
           
 Form<?> IFormSubmittingComponent.getForm()
          Returns the form this component submits.
 Form<?> FormComponent.getForm()
           
 Form<?> AbstractSubmitLink.getForm()
           
 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
AbstractSubmitLink(String id, Form<?> form)
          Construct.
AbstractSubmitLink(String id, IModel<?> model, Form<?> form)
          Construct.
SubmitLink(String id, Form<?> form)
          With this constructor the SubmitLink will submit the Form that is given when the link is clicked on.
SubmitLink(String id, IModel<?> model, Form<?> form)
          With this constructor the SubmitLink will submit the Form that 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
 void IFormValidator.validate(Form<?> form)
          This method is ran if all components returned by IFormValidator.getDependentFormComponents() are valid.
 void EqualInputValidator.validate(Form<?> form)
           
 

Uses of Form in org.apache.wicket.protocol.http
 

Methods in org.apache.wicket.protocol.http with parameters of type Form
 void MockHttpServletRequest.setRequestToFormComponent(Form<?> form, Map<String,Object> values)
          Initialize the request parameters to point to the given form component.
 

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

Methods in org.apache.wicket.util.tester that return Form
 Form<?> FormTester.getForm()
          Retrieves the current Form object.
 

Constructors in org.apache.wicket.util.tester with parameters of type Form
FormTester(String path, Form<?> workingForm, BaseWicketTester wicketTester, boolean fillBlankString)
           
 



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