You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Rakesh A (JIRA)" <ji...@apache.org> on 2016/01/13 05:38:39 UTC

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

    [ https://issues.apache.org/jira/browse/WICKET-6075?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15095595#comment-15095595 ] 

Rakesh A commented on WICKET-6075:
----------------------------------

If we extract 'Ajax-Location' header parsing code (which is now in processAjaxResponse()) into a separate method, we can call it even when 'wr' ajax attribute is set to false.
I tried the same, and created a PR - https://github.com/apache/wicket/pull/156

> 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
>
> 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)