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:34:39 UTC

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

Rakesh A created WICKET-6075:
--------------------------------

             Summary: 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: 7.1.0, 6.21.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)