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(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
  7. final def asInstanceOf[T0]: T0

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

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

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

    Permalink
    Definition Classes
    EventTarget
  11. 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
  12. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  14. 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
  15. def finalize(): Unit

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  24. 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
  25. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  27. 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
  28. var onabort: Function1[Any, _]

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

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

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

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

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

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

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

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

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

    Permalink
  38. def progress(progressCallbacks: Any*): 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
    JQueryDeferred
  39. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  40. def readyState: Int

    Permalink
    Definition Classes
    XMLHttpRequest
  41. 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
  42. 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
  43. def removeEventListener(type: String, listener: Function1[Event, _], useCapture: Boolean): Unit

    Permalink
    Definition Classes
    EventTarget
  44. 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
  45. 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
  46. def response: Any

    Permalink
    Definition Classes
    XMLHttpRequest
  47. def responseText: String

    Permalink
    Definition Classes
    XMLHttpRequest
  48. var responseType: String

    Permalink
    Definition Classes
    XMLHttpRequest
  49. def responseXML: Document

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

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

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

    Permalink

    Determine the current state of a Deferred object.

    Determine the current state of a Deferred object.

    Definition Classes
    JQueryDeferred
  53. def status: Int

    Permalink
    Definition Classes
    XMLHttpRequest
  54. def statusText: String

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

    Permalink
    Definition Classes
    AnyRef
  56. var timeout: Double

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  64. 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