wicket.ajax |
|
Java Source File Name | Type | Comment |
AbstractAjaxTimerBehavior.java | Class | A behavior that generates an AJAX update callback at a regular interval. |
AbstractDefaultAjaxBehavior.java | Class | The base class for Wicket's default AJAX implementation. |
AjaxEventBehavior.java | Class | An ajax behavior that is attached to a certain client-side (usually
javascript) event, such as onClick, onChange, onKeyDown, etc. |
AjaxRequestTarget.java | Class | A request target that produces ajax response envelopes used on the client
side to update component markup as well as evaluate arbitrary javascript.
A component whose markup needs to be updated should be added to this target
via AjaxRequestTarget#addComponent(Component) method. |
AjaxRequestTargetTest.java | Class | Test the
AjaxRequestTarget . |
AjaxSelfUpdatingTimerBehavior.java | Class | Automatically re-renders the component it is attached to via AJAX at a
regular interval. |
IAjaxCallDecorator.java | Interface | Interface used to decorate a wicket generated javascript that performs an
ajax callback
The returned scripts are rendered in the HTML as follow:
<a href="javascript:[script]var wcall=wicketAjaxGet('[url]', function() {[onSuccessScript]},
function() {[onFailureScript});" ...>[text of the link]</a>
As a result, using double quotes in the script will break the link syntax and
make it fail (or fallback in the case of an AjaxFallbackLink). |
IAjaxIndicatorAware.java | Interface | This interface makes it trivial to use busy indicators for ajax requests.
This interface can be implemented by a component that has an ajax behavior
attached to it, or by the ajax behavior itself. |
MockComponent1.java | Class | |
MockComponent2.java | Class | |
MockComponent3.java | Class | |