Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

At ajax.js you may see the currently available JavaScript unit tests that we have for the Ajax functionality in wicket-ajax.js

Blog articles

An introduction to the new functionalities are described at Wicket In Action. There is also a link to a demo application.

FAQ

How to check whether my custom version of the backing JavaScript library (jQuery) doesn't break Wicket internals somehow ?

...

  1. before handler - attributes (the Ajax call attributes)
  2. beforeSend handler - attributes, jqXHR (the jQuery XMLHttpRequest object), settings (the jQuery ajax settings)
  3. after handler - attributes
  4. success handler - attributes, jqXHR, data (the response), textStatus (the response status)
  5. failure handler - attributes, errorMessage (the error message from jQuery)
  6. complete handler - attrs, jqXHR, textStatus

...