You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Andrea Del Bene (JIRA)" <ji...@apache.org> on 2016/04/25 14:29:12 UTC

[jira] [Updated] (WICKET-6075) Error page redirection for Autocomplete field response

     [ https://issues.apache.org/jira/browse/WICKET-6075?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrea Del Bene updated WICKET-6075:
------------------------------------
    Attachment: WICKET-WICKET-6075.patch

> Error page redirection for Autocomplete field response
> ------------------------------------------------------
>
>                 Key: WICKET-6075
>                 URL: https://issues.apache.org/jira/browse/WICKET-6075
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 6.21.0, 7.1.0
>            Reporter: Rakesh A
>            Assignee: Andrea Del Bene
>         Attachments: WICKET-WICKET-6075.patch, autocomplete.7z
>
>
> If ExceptionSettings#errorHandlingStrategyDuringAjaxRequests,
> is set to ExceptionSettings.AjaxErrorStrategy.REDIRECT_TO_ERROR_PAGE, and AutoCompleteTextField.getChoices(String) results an exception, 'Ajax-Location' header is ignored.
> In wicket-ajax-jquery.js, 'Ajax-Location' header is processed in 'Wicket.Ajax.Call.processAjaxResponse()' method. But for autocomplete field, 'wr' ajax attribute is set to false and below given block (success callback in doAjax() method) in 'wicket-ajax-jquery.js', doesn't go into processAjaxResponse() method.
> 	success: function(data, textStatus, jqXHR) {
> 		if (attrs.wr) {
> 			self.processAjaxResponse(data, textStatus, jqXHR, context);
> 		} else {
> 			self._executeHandlers(attrs.sh, attrs, jqXHR, data, textStatus);
> 				we.publish(topic.AJAX_CALL_SUCCESS, attrs, jqXHR, data, textStatus);
> 		}
> 	}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)