Uses of Class
org.apache.wicket.behavior.AbstractAjaxBehavior
-
Packages that use AbstractAjaxBehavior Package Description org.apache.wicket.ajax org.apache.wicket.ajax.form org.apache.wicket.ajax.markup.html.navigation.paging org.apache.wicket.extensions.ajax org.apache.wicket.extensions.ajax.markup.html org.apache.wicket.extensions.ajax.markup.html.autocomplete org.apache.wicket.extensions.ajax.markup.html.modal org.apache.wicket.markup.html.form.upload Support for upload forms (using multipart requests).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 AbstractAjaxBehavior in org.apache.wicket.ajax
Subclasses of AbstractAjaxBehavior in org.apache.wicket.ajax Modifier and Type Class Description class
AbstractAjaxTimerBehavior
A behavior that generates an AJAX update callback at a regular interval.class
AbstractDefaultAjaxBehavior
The base class for Wicket's default AJAX implementation.class
AjaxClientInfoBehavior
An behavior that collects the information to populate WebClientInfo's ClientProperties by using Ajaxclass
AjaxEventBehavior
An ajax behavior that is attached to a certain client-side (usually javascript) event, such as click, change, keydown, etc.class
AjaxNewWindowNotifyingBehavior
An Ajax behavior that notifies when a new browser window/tab is opened with url to a page instance which is already opened in another window/tab in the same user session.class
AjaxOnDomReadyClientInfoBehavior
A behavior that collects the information to populate WebClientInfo's ClientProperties by using Ajax.class
AjaxPreventSubmitBehavior
An Ajax behavior that could be used to prevent the form submit when the user presses the ENTER key while in an HTML <input type="text" > field.class
AjaxSelfUpdatingTimerBehavior
Automatically re-renders the component it is attached to via AJAX at a regular interval. -
Uses of AbstractAjaxBehavior in org.apache.wicket.ajax.form
Subclasses of AbstractAjaxBehavior in org.apache.wicket.ajax.form Modifier and Type Class Description class
AjaxFormChoiceComponentUpdatingBehavior
This is an Ajax behavior that is meant to update a group of choices that are represented by multiple components.class
AjaxFormComponentUpdatingBehavior
A behavior that updates the hosting FormComponent via ajax when an event it is attached to is triggered.class
AjaxFormSubmitBehavior
Ajax event behavior that submits a form via ajax when the event it is attached to, is invoked.class
OnChangeAjaxBehavior
A behavior that updates the hostingFormComponent
's model via Ajax when value of the component is changed. -
Uses of AbstractAjaxBehavior in org.apache.wicket.ajax.markup.html.navigation.paging
Subclasses of AbstractAjaxBehavior in org.apache.wicket.ajax.markup.html.navigation.paging Modifier and Type Class Description class
AjaxPagingNavigationBehavior
Ajax behavior for the paging navigation links. -
Uses of AbstractAjaxBehavior in org.apache.wicket.extensions.ajax
Subclasses of AbstractAjaxBehavior in org.apache.wicket.extensions.ajax Modifier and Type Class Description class
AjaxDownloadBehavior
Download resources via Ajax.class
AjaxFileDropBehavior
Uploads files from a drop event. -
Uses of AbstractAjaxBehavior in org.apache.wicket.extensions.ajax.markup.html
Subclasses of AbstractAjaxBehavior in org.apache.wicket.extensions.ajax.markup.html Modifier and Type Class Description protected class
AjaxEditableLabel.EditorAjaxBehavior
protected class
AjaxEditableLabel.LabelAjaxBehavior
-
Uses of AbstractAjaxBehavior in org.apache.wicket.extensions.ajax.markup.html.autocomplete
Subclasses of AbstractAjaxBehavior in org.apache.wicket.extensions.ajax.markup.html.autocomplete Modifier and Type Class Description class
AbstractAutoCompleteBehavior
class
AutoCompleteBehavior<T>
This behavior builds on top ofAbstractAutoCompleteBehavior
by introducing the concept of aIAutoCompleteRenderer
to make response writing easier. -
Uses of AbstractAjaxBehavior in org.apache.wicket.extensions.ajax.markup.html.modal
Subclasses of AbstractAjaxBehavior in org.apache.wicket.extensions.ajax.markup.html.modal Modifier and Type Class Description protected class
ModalWindow.CloseButtonBehavior
Deprecated. -
Uses of AbstractAjaxBehavior in org.apache.wicket.markup.html.form.upload
Subclasses of AbstractAjaxBehavior in org.apache.wicket.markup.html.form.upload Modifier and Type Class Description class
FilesSelectedBehavior
OnChangeAjaxBehavior
that streams back to server properties of the selected file(s) (at client side), before uploading it (them). -
Uses of AbstractAjaxBehavior in org.apache.wicket.util.tester
Methods in org.apache.wicket.util.tester with parameters of type AbstractAjaxBehavior Modifier and Type Method Description void
BaseWicketTester. executeBehavior(AbstractAjaxBehavior behavior)
Builds and processes a request suitable for executing anAbstractAjaxBehavior
.protected void
WicketTestCase. executeBehavior(AbstractAjaxBehavior behavior, String filename)
void
WicketTester. executeBehavior(Class<?> testClass, AbstractAjaxBehavior behavior, String filename)
-