Repository: wicket Updated Branches: refs/heads/wicket-7.x bf1dd23a2 -> c77a9bea7
javadoc: describe failure handler function arguments Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/c77a9bea Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/c77a9bea Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/c77a9bea Branch: refs/heads/wicket-7.x Commit: c77a9bea737a50598c95cca6ee89519760bfb86a Parents: bf1dd23 Author: Sven Meier <[email protected]> Authored: Wed Mar 9 11:54:37 2016 +0100 Committer: Sven Meier <[email protected]> Committed: Wed Mar 9 13:13:26 2016 +0100 ---------------------------------------------------------------------- .../java/org/apache/wicket/ajax/attributes/IAjaxCallListener.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/c77a9bea/wicket-core/src/main/java/org/apache/wicket/ajax/attributes/IAjaxCallListener.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/java/org/apache/wicket/ajax/attributes/IAjaxCallListener.java b/wicket-core/src/main/java/org/apache/wicket/ajax/attributes/IAjaxCallListener.java index 0274766..e671c0a 100644 --- a/wicket-core/src/main/java/org/apache/wicket/ajax/attributes/IAjaxCallListener.java +++ b/wicket-core/src/main/java/org/apache/wicket/ajax/attributes/IAjaxCallListener.java @@ -134,6 +134,9 @@ public interface IAjaxCallListener * will be executed in a function that receives the following parameters: * <ol> * <li>attrs - the AjaxRequestAttributes as JSON</li> + * <li>jqXHR - the jQuery XMLHttpRequest object</li> + * <li>errorMessage - in case of HTTP error the textual portion of the HTTP status</li> + * <li>textStatus - type of failure: null, "timeout", "error", "abort" or "parsererror"</li> * </ol> * * @param component
