Trait

org.querki.jquery

JQueryXHR

Related Doc: package jquery

Permalink

trait JQueryXHR extends XMLHttpRequest with JQueryDeferred

Annotations
@RawJSType() @native()
Linear Supertypes
JQueryDeferred, JQueryPromise, XMLHttpRequest, EventTarget, Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JQueryXHR
  2. JQueryDeferred
  3. JQueryPromise
  4. XMLHttpRequest
  5. EventTarget
  6. Object
  7. Any
  8. AnyRef
  9. 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 abort(): Unit

    Permalink
    Definition Classes
    XMLHttpRequest
  5. def addEventListener[T <: Event](type: String, listener: Function1[T, _], useCapture: Boolean): Unit

    Permalink
    Definition Classes
    EventTarget
  6. def always(handler: Function3[Any, String, |[JQueryXHR, String], Any]): JQueryXHR

    Permalink
  7. def always(alwaysCallbacks: Function*): JQueryDeferred

    Permalink

    Add handlers to be called when the Deferred object is either resolved or rejected.

    Add handlers to be called when the Deferred object is either resolved or rejected.

    Definition Classes
    JQueryPromise
  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def create(): XMLHttpRequest

    Permalink
    Definition Classes
    XMLHttpRequest
  11. def dispatchEvent(evt: Event): Boolean

    Permalink
    Definition Classes
    EventTarget
  12. def done(handler: Function3[Any, String, JQueryXHR, Any]): JQueryXHR

    Permalink
  13. def done(doneCallbacks: Function*): JQueryDeferred

    Permalink

    Add handlers to be called when the Deferred object is resolved.

    Add handlers to be called when the Deferred object is resolved.

    Definition Classes
    JQueryPromise
  14. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def fail(handler: Function3[JQueryXHR, String, String, Any]): JQueryXHR

    Permalink
  17. def fail(failCallbacks: Function*): JQueryDeferred

    Permalink

    Add handlers to be called when the Deferred object is rejected.

    Add handlers to be called when the Deferred object is rejected.

    Definition Classes
    JQueryPromise
  18. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def getAllResponseHeaders(): String

    Permalink
    Definition Classes
    XMLHttpRequest
  20. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  21. def getResponseHeader(header: String): String

    Permalink
    Definition Classes
    XMLHttpRequest
  22. def hasOwnProperty(v: String): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  25. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  26. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  27. def notify(args: Any*): JQueryDeferred

    Permalink

    Call the progressCallbacks on a Deferred object with the given args.

    Call the progressCallbacks on a Deferred object with the given args.

    Definition Classes
    JQueryDeferred
  28. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  30. def notifyWith(context: Object, args: Array[_]): JQueryDeferred

    Permalink

    Call the progressCallbacks on a Deferred object with the given context and args.

    Call the progressCallbacks on a Deferred object with the given context and args.

    Definition Classes
    JQueryDeferred
  31. var onabort: Function1[Any, _]

    Permalink
    Definition Classes
    XMLHttpRequest
  32. var onerror: Function1[ErrorEvent, _]

    Permalink
    Definition Classes
    XMLHttpRequest
  33. var onload: Function1[Event, _]

    Permalink
    Definition Classes
    XMLHttpRequest
  34. var onloadend: Function1[ProgressEvent, _]

    Permalink
    Definition Classes
    XMLHttpRequest
  35. var onloadstart: Function1[Any, _]

    Permalink
    Definition Classes
    XMLHttpRequest
  36. var onprogress: Function1[ProgressEvent, _]

    Permalink
    Definition Classes
    XMLHttpRequest
  37. var onreadystatechange: Function1[Event, _]

    Permalink
    Definition Classes
    XMLHttpRequest
  38. var ontimeout: Function1[Event, _]

    Permalink
    Definition Classes
    XMLHttpRequest
  39. def open(method: String, url: String, async: Boolean, user: String, password: String): Unit

    Permalink
    Definition Classes
    XMLHttpRequest
  40. def overrideMimeType(): Dynamic

    Permalink
  41. def progress(progressCallbacks: Function*): JQueryDeferred

    Permalink

    Add handlers to be called when the Deferred object generates progress notifications.

    Add handlers to be called when the Deferred object generates progress notifications.

    Each parameter can be either a Function *or* an Array of Functions.

    Definition Classes
    JQueryPromise
  42. def promise(target: UndefOr[Object]): JQueryPromise

    Permalink

    Return a Deferred's Promise object.

    Return a Deferred's Promise object.

    Definition Classes
    JQueryPromise
  43. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  44. def readyState: Int

    Permalink
    Definition Classes
    XMLHttpRequest
  45. def reject(args: Any*): JQueryDeferred

    Permalink

    Reject a Deferred object and call any failCallbacks with the given args.

    Reject a Deferred object and call any failCallbacks with the given args.

    Definition Classes
    JQueryDeferred
  46. def rejectWith(context: Object, args: Array[Any]): JQueryDeferred

    Permalink

    Reject a Deferred object and call any failCallbacks with the given context and args.

    Reject a Deferred object and call any failCallbacks with the given context and args.

    Definition Classes
    JQueryDeferred
  47. def removeEventListener[T <: Event](type: String, listener: Function1[T, _], useCapture: Boolean): Unit

    Permalink
    Definition Classes
    EventTarget
  48. def resolve(args: Any*): JQueryDeferred

    Permalink

    Resolve a Deferred object and call any doneCallbacks with the given args.

    Resolve a Deferred object and call any doneCallbacks with the given args.

    Definition Classes
    JQueryDeferred
  49. def resolveWith(context: Object, args: Array[Any]): JQueryDeferred

    Permalink

    Resolve a Deferred object and call any doneCallbacks with the given context and args.

    Resolve a Deferred object and call any doneCallbacks with the given context and args.

    Definition Classes
    JQueryDeferred
  50. def response: Any

    Permalink
    Definition Classes
    XMLHttpRequest
  51. def responseText: String

    Permalink
    Definition Classes
    XMLHttpRequest
  52. var responseType: String

    Permalink
    Definition Classes
    XMLHttpRequest
  53. def responseXML: Document

    Permalink
    Definition Classes
    XMLHttpRequest
  54. def send(data: Any): Unit

    Permalink
    Definition Classes
    XMLHttpRequest
  55. def setRequestHeader(header: String, value: String): Unit

    Permalink
    Definition Classes
    XMLHttpRequest
  56. def state(): String

    Permalink

    Determine the current state of a Deferred object.

    Determine the current state of a Deferred object.

    Definition Classes
    JQueryPromise
  57. def status: Int

    Permalink
    Definition Classes
    XMLHttpRequest
  58. def statusText: String

    Permalink
    Definition Classes
    XMLHttpRequest
  59. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  60. def then(doneCallback: Function3[Any, String, JQueryXHR, Any], failCallback: Function3[JQueryXHR, String, String, Any]): JQueryXHR

    Permalink
  61. def then(doneFilter: Function1[Any, Any], failFilter: UndefOr[Function1[Any, Any]] = js.undefined, progressFilter: UndefOr[Function1[Any, Any]] = js.undefined): JQueryPromise

    Permalink

    Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.

    Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.

    Definition Classes
    JQueryPromise
  62. var timeout: Double

    Permalink
    Definition Classes
    XMLHttpRequest
  63. def toLocaleString(): String

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

    Permalink
    Definition Classes
    AnyRef → Any
  65. var upload: XMLHttpRequestEventTarget

    Permalink
    Definition Classes
    XMLHttpRequest
  66. def valueOf(): Any

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  70. var withCredentials: Boolean

    Permalink
    Definition Classes
    XMLHttpRequest

Inherited from JQueryDeferred

Inherited from JQueryPromise

Inherited from XMLHttpRequest

Inherited from EventTarget

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped