Trait/Object

io.udash.wrappers.jquery

JQueryAjaxSettings

Related Docs: object JQueryAjaxSettings | package jquery

Permalink

trait JQueryAjaxSettings extends Object

jQuery AJAX settings object
See: jQuery Docs

Annotations
@RawJSType() @native()
Linear Supertypes
Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JQueryAjaxSettings
  2. Object
  3. Any
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def accepts: Any

    Permalink

    The content type sent in the request header that tells the server what kind of response it will accept in return.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def async: Boolean

    Permalink

    By default, all requests are sent asynchronously (i.e.

    By default, all requests are sent asynchronously (i.e. this is set to true by default). If you need synchronous requests, set this option to false.

  7. def beforeSend(jqXHR: JQueryXHR, settings: JQueryAjaxSettings): Boolean

    Permalink

    A pre-request callback function that can be used to modify the JQueryXHR object before it is sent.

    A pre-request callback function that can be used to modify the JQueryXHR object before it is sent. Returning false in the beforeSend function will cancel the request.

  8. def cache: Boolean

    Permalink

    If set to false, it will force requested pages not to be cached by the browser.

  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def complete(jqXHR: JQueryXHR, textStatus: String): Dynamic

    Permalink

    A function to be called when the request finishes (after success and error callbacks are executed).

  11. def contentType: Any

    Permalink

    When sending data to the server, use this content type.

  12. def contents: Any

    Permalink

    An object of string/regular-expression pairs that determine how jQuery will parse the response, given its content type.

  13. def context: Any

    Permalink

    This object will be the context of all Ajax-related callbacks.

  14. def converters: Any

    Permalink

    An object containing dataType-to-dataType converters.

  15. def crossDomain: Boolean

    Permalink

    If you wish to force a crossDomain request (such as JSONP) on the same domain, set the value of crossDomain to true.

  16. def data: Any

    Permalink

    Data to be sent to the server.

    Data to be sent to the server. It is converted to a query string, if not already a string. It's appended to the url for GET-requests.

  17. def dataFilter(data: Any, tpe: Any): Any

    Permalink

    A function to be used to handle the raw response data of XMLHttpRequest.

  18. def dataType: String

    Permalink

    The type of data that you're expecting back from the server.

  19. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  21. def error(jqXHR: JQueryXHR, textStatus: String, errorThrow: String): Any

    Permalink

    A function to be called if the request fails.

  22. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  24. def global: Boolean

    Permalink

    Whether to trigger global Ajax event handlers for this request.

    Whether to trigger global Ajax event handlers for this request. The default is true. Set to false to prevent the global handlers like ajaxStart or ajaxStop from being triggered.

  25. def hasOwnProperty(v: String): Boolean

    Permalink
    Definition Classes
    Object
  26. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  27. def headers: Any

    Permalink

    An object of additional header key/value pairs to send along with requests using the XMLHttpRequest transport.

  28. def ifModified: Boolean

    Permalink

    Allow the request to be successful only if the response has changed since the last request.

  29. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  30. def isLocal: Boolean

    Permalink

    Allow the current environment to be recognized as "local," (e.g.

    Allow the current environment to be recognized as "local," (e.g. the filesystem), even if jQuery does not recognize it as such by default.

  31. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  32. def jsonp: String

    Permalink

    Override the callback function name in a JSONP request.

  33. def jsonpCallback: Any

    Permalink

    Specify the callback function name for a JSONP request.

  34. def method: String

    Permalink

    The HTTP method to use for the request (e.g.

    The HTTP method to use for the request (e.g. "POST", "GET", "PUT").

  35. def mimeType: String

    Permalink

    A mime type to override the XHR mime type.

  36. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  37. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  38. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  39. def password: String

    Permalink

    A password to be used with XMLHttpRequest in response to an HTTP access authentication request.

  40. def processData: Boolean

    Permalink

    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".

  41. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  42. def scriptCharset: String

    Permalink

    Only applies when the "script" transport is used.

  43. def statusCode: Any

    Permalink

    An object of numeric HTTP codes and functions to be called when the response has the corresponding code.

  44. def success(data: Any, textStatus: String, jqXHR: JQueryXHR): Any

    Permalink

    A function to be called if the request succeeds.

  45. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  46. def timeout: Double

    Permalink

    Set a timeout (in milliseconds) for the request.

  47. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  48. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  49. def traditional: Boolean

    Permalink

    Set this to true if you wish to use the traditional style of param serialization.

  50. def url: String

    Permalink

    A string containing the URL to which the request is sent.

  51. def username: String

    Permalink

    A username to be used with XMLHttpRequest in response to an HTTP access authentication request.

  52. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  53. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  54. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  55. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  56. def xhr: Any

    Permalink

    Callback for creating the XMLHttpRequest object.

  57. def xhrFields: Object

    Permalink

    An object of fieldName-fieldValue pairs to set on the native XHR object.

Deprecated Value Members

  1. def type: String

    Permalink

    An alias for method.

    An alias for method.

    Annotations
    @deprecated
    Deprecated

    (Since version 0.1.0) Use method instead.

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped