Setting data
setRow
Essential
The setRow
method takes an object and sets the entire data of a single Row
in the Store
. Read more.
addRow
Essential
The addRow
method takes an object and creates a new Row
in the Store
, returning the unique Id
assigned to it. Read more.
setCell
Essential
The setCell
method sets the value of a single Cell
in the Store
. Read more.
setValue
Essential
The setValue
method sets a single keyed Value
in the Store
. Read more.
transaction
Essential
The transaction
method takes a function that makes multiple mutations to the Store
, buffering all calls to the relevant listeners until it completes. Read more.