Uses of Class
org.wicketstuff.wiquery.core.ajax.JQueryAjaxOption
Packages that use JQueryAjaxOption
-
Uses of JQueryAjaxOption in org.wicketstuff.wiquery.core.ajax
Methods in org.wicketstuff.wiquery.core.ajax that return JQueryAjaxOptionModifier and TypeMethodDescriptionJQueryAjaxOption.getObject()JQueryAjaxOption.setAsync(boolean async) By default, all requests are sent asynchronous (i.e.JQueryAjaxOption.setBeforeSendEvent(JsScope beforeSend) A pre-callback to modify the XMLHttpRequest object before it is sent.JQueryAjaxOption.setCache(boolean cache) Set to false it will force the pages that you request to not be cached by the browser.JQueryAjaxOption.setCompleteEvent(JsScope complete) A function to be called when the request finishes (after success and error callbacks are executed).JQueryAjaxOption.setContentType(String contentType) When sending data to the server, use this content-type.Data to be sent to the server.JQueryAjaxOption.setDataFilterEvent(JsScope dataFilter) A function to be used to handle the raw responsed data of XMLHttpRequest.JQueryAjaxOption.setDataType(String dataType) The type of data that you're expecting back from the server.JQueryAjaxOption.setErrorEvent(JsScope error) A function to be called if the request fails.JQueryAjaxOption.setGlobal(boolean global) Whether to trigger global AJAX event handlers for this request.JQueryAjaxOption.setIfModified(boolean ifModified) Allow the request to be successful only if the response has changed since the last request.Override the callback function name in a jsonp request.JQueryAjaxOption.setPassword(String password) A password to be used in response to an HTTP access authentication request.JQueryAjaxOption.setProcessData(boolean processData) By default, data passed in to the data option as an object (technically, anything other than a string) will be processed and transformed into a query string, fitting to the default content-type "application/x-www-form-urlencoded".JQueryAjaxOption.setScriptCharset(String scriptCharset) Only for requests with 'jsonp' or 'script' dataType and GET type.JQueryAjaxOption.setSuccessEvent(JsScope success) A function to be called if the request succeeds.JQueryAjaxOption.setTimeout(int timeout) Set a local timeout (in milliseconds) for the request.JQueryAjaxOption.setType(JQueryAjaxOption.AjaxType type) The type of request to make ("POST" or "GET"), default is "GET".The URL to request.JQueryAjaxOption.setUsername(String username) A username to be used in response to an HTTP access authentication request.JQueryAjaxOption.setXhrEvent(JsScope xhr) Callback for creating the XMLHttpRequest object.Methods in org.wicketstuff.wiquery.core.ajax with parameters of type JQueryAjaxOption