TinyBase logoTinyBase

Setter methods

setTables

The setTables method takes an object and sets the entire tabular data of the Store. Read more.

setTablesJson

The setTablesJson method takes a string serialization of all of the Tables in the Store and attempts to update them to that. Read more.

setTablesSchema

The setTablesSchema method lets you specify the TablesSchema of the tabular part of the Store. Read more.

setTable

The setTable method takes an object and sets the entire data of a single Table in the Store. Read more.

setRow

The setRow method takes an object and sets the entire data of a single Row in the Store. Read more.

addRow

The addRow method takes an object and creates a new Row in the Store, returning the unique Id assigned to it. Read more.

setPartialRow

The setPartialRow method takes an object and sets partial data of a single Row in the Store, leaving other Cell values unaffected. Read more.

setCell

The setCell method sets the value of a single Cell in the Store. Read more.

setPartialValues

The setPartialValues method takes an object and sets its Values in the Store, but leaving existing Values unaffected. Read more.

setValues

The setValues method takes an object and sets all the Values in the Store. Read more.

setValuesJson

The setValuesJson method takes a string serialization of all of the Values in the Store and attempts to update them to those values. Read more.

setValuesSchema

The setValuesSchema method lets you specify the ValuesSchema of the keyed Values part of the Store. Read more.

setValue

The setValue method sets a single keyed Value in the Store. Read more.

applyChanges

The applyChanges method applies a set of Changes to the Store. Read more.

setContent

The setContent method takes an array of two objects and sets the entire data of the Store. Read more.

setJson

The setJson method takes a string serialization of all of the Tables and Values in the Store and attempts to update them to those values. Read more.

setSchema

The setSchema method lets you specify the TablesSchema and ValuesSchema of the Store. Read more.