-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Columns Component
Travis Tidwell edited this page Jul 3, 2017
·
5 revisions
The JSON Schema definition for this component is defined as follows.
This component uses the core properties defined within the Common Parameters section.
Property | Description | Value | Required | Default |
---|---|---|---|---|
columns | The columns configuration and components. | This is an array of Column Configurations defined below. | true |
see below |
The columns definition is defined as an array of column configurations. For example, lets say you have 3 different columns, your schema may look like the following.
{
"type": "columns",
"components": [
{
... COLUMN CONFIGURATION ...
},
{
... COLUMN CONFIGURATION ...
},
{
... COLUMN CONFIGURATION ...
}
]
}
Display Users submitted data into a table inside the admin dashboard?