Packages

c

org.scalajs.dom.raw

IDBCursorWithValue

class IDBCursorWithValue extends IDBCursor

Same as IDBCursor with the value property.

MDN

Annotations
@JSType() @native() @JSGlobal()
Linear Supertypes
IDBCursor, Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IDBCursorWithValue
  2. IDBCursor
  3. Object
  4. Any
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new IDBCursorWithValue()

Value Members

  1. def advance(count: Int): Unit

    This method may raise a DOMException of one of the following types:

    This method may raise a DOMException of one of the following types:

    MDN

    Definition Classes
    IDBCursor
  2. def continue(key: Any = ???): Unit

    Sets cursor to key if specified, otherwise advances cursor by one.

    Sets cursor to key if specified, otherwise advances cursor by one.

    Definition Classes
    IDBCursor
    Note

    calling this method twice from the same onsuccess handler results in a InvalidStateError DOMException being thrown on the second call W3C

  3. def delete(): IDBRequest

    Returns an IDBRequest object, and, in a separate thread, deletes the record at the cursor's position, without changing the cursor's position.

    Returns an IDBRequest object, and, in a separate thread, deletes the record at the cursor's position, without changing the cursor's position.

    MDN

    Definition Classes
    IDBCursor
  4. def direction: String

    Is a DOMString that, on getting, returns the direction of traversal of the cursor.

    Is a DOMString that, on getting, returns the direction of traversal of the cursor. See Constants for possible values.

    MDN

    Definition Classes
    IDBCursor
  5. def hasOwnProperty(v: String): Boolean
    Definition Classes
    Object
  6. def isPrototypeOf(v: Object): Boolean
    Definition Classes
    Object
  7. def key: Any

    Returns the key for the record at the cursor's position.

    Returns the key for the record at the cursor's position. If the cursor is outside its range, this is set to undefined. The cursor's key can be any data type.

    MDN

    Definition Classes
    IDBCursor
  8. def primaryKey: Any

    Returns the cursor's current effective key.

    Returns the cursor's current effective key. If the cursor is currently being iterated or has iterated outside its range, this is set to undefined. The cursor's primary key can be any data type.

    MDN

    Definition Classes
    IDBCursor
  9. def propertyIsEnumerable(v: String): Boolean
    Definition Classes
    Object
  10. def source: Any

    On getting, this object returns the IDBObjectStore or IDBIndex that the cursor is iterating.

    On getting, this object returns the IDBObjectStore or IDBIndex that the cursor is iterating. This function never returns null or throws an exception, even if the cursor is currently being iterated, has iterated past its end, or its transaction is not active.

    MDN

    Definition Classes
    IDBCursor
  11. def toLocaleString(): String
    Definition Classes
    Object
  12. def update(value: Any): IDBRequest

    Returns an IDBRequest object, and, in a separate thread, updates the value at the current position of the cursor in the object store.

    Returns an IDBRequest object, and, in a separate thread, updates the value at the current position of the cursor in the object store.

    MDN

    Definition Classes
    IDBCursor
  13. def value: Any
  14. def valueOf(): Any
    Definition Classes
    Object