Skip to main content

Data Store

The Data Store control serves as a repository within a microapp to store data that can be utilized by other controls or components. It acts as a storage facility for various data sets.

Data Store Control
Data Store Control

Binding Data Options

The Data Store control accepts an array of objects for data storage. For example:

[
{
"id": 1,
"name": "Hanson Deck",
"email": "hanson@deck.com"
},
{
"id": 2,
"name": "Josi Wheelwright",
"email": "JosiWheelwright@example.com"
}
]

Properties

PropertyDescription
All RowsEnables or disables the selection of all rows based on the control type and specific requirements.
Default Selected Item IndexSpecifies the selected row by setting an index value. Assigning a value of 0 sets the default selected value for the control.
ValueDefines the data to be stored within the Data Store in JSON array format.