JQueryAjaxOption |
JQueryAjaxOption.getObject() |
|
JQueryAjaxOption |
JQueryAjaxOption.setAsync(boolean async) |
By default, all requests are sent asynchronous (i.e.
|
JQueryAjaxOption |
JQueryAjaxOption.setBeforeSendEvent(JsScope beforeSend) |
A pre-callback to modify the XMLHttpRequest object before it is sent.
|
JQueryAjaxOption |
JQueryAjaxOption.setCache(boolean cache) |
Set to false it will force the pages that you request to not be cached by the browser.
|
JQueryAjaxOption |
JQueryAjaxOption.setCompleteEvent(JsScope complete) |
A function to be called when the request finishes (after success and error callbacks are
executed).
|
JQueryAjaxOption |
JQueryAjaxOption.setContentType(java.lang.String contentType) |
When sending data to the server, use this content-type.
|
JQueryAjaxOption |
JQueryAjaxOption.setData(java.lang.String data) |
Data to be sent to the server.
|
JQueryAjaxOption |
JQueryAjaxOption.setDataFilterEvent(JsScope dataFilter) |
A function to be used to handle the raw responsed data of XMLHttpRequest.
|
JQueryAjaxOption |
JQueryAjaxOption.setDataType(java.lang.String dataType) |
The type of data that you're expecting back from the server.
|
JQueryAjaxOption |
JQueryAjaxOption.setErrorEvent(JsScope error) |
A function to be called if the request fails.
|
JQueryAjaxOption |
JQueryAjaxOption.setGlobal(boolean global) |
Whether to trigger global AJAX event handlers for this request.
|
JQueryAjaxOption |
JQueryAjaxOption.setIfModified(boolean ifModified) |
Allow the request to be successful only if the response has changed since the last request.
|
JQueryAjaxOption |
JQueryAjaxOption.setJsonp(java.lang.String jsonp) |
Override the callback function name in a jsonp request.
|
JQueryAjaxOption |
JQueryAjaxOption.setPassword(java.lang.String password) |
A password to be used in response to an HTTP access authentication request.
|
JQueryAjaxOption |
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 |
JQueryAjaxOption.setScriptCharset(java.lang.String scriptCharset) |
Only for requests with 'jsonp' or 'script' dataType and GET type.
|
JQueryAjaxOption |
JQueryAjaxOption.setSuccessEvent(JsScope success) |
A function to be called if the request succeeds.
|
JQueryAjaxOption |
JQueryAjaxOption.setTimeout(int timeout) |
Set a local timeout (in milliseconds) for the request.
|
JQueryAjaxOption |
JQueryAjaxOption.setType(JQueryAjaxOption.AjaxType type) |
The type of request to make ("POST" or "GET"), default is "GET".
|
JQueryAjaxOption |
JQueryAjaxOption.setUrl(java.lang.String url) |
The URL to request.
|
JQueryAjaxOption |
JQueryAjaxOption.setUsername(java.lang.String username) |
A username to be used in response to an HTTP access authentication request.
|
JQueryAjaxOption |
JQueryAjaxOption.setXhrEvent(JsScope xhr) |
Callback for creating the XMLHttpRequest object.
|