Column Types
Data Tables support several column types. Each type determines how data is displayed, edited, and validated.
Available types
Text
General-purpose text field. Use for names, descriptions, addresses, etc.
- API value: String
- Example:
"John Doe"
Number
Numeric values. Use for prices, quantities, ages, etc.
- API value: Number
- Example:
42,19.99 - Default:
0
Checkbox
Boolean true/false values. Displayed as a clickable checkbox in the UI.
- API value: Boolean
- Example:
true,false - Default:
false
Date
Date values. Displayed as a formatted date in the UI, edited with a date picker.
- API value: ISO 8601 string
- Example:
"2025-01-15"
URL
Web links. Displayed as clickable links in the UI.
- API value: String (URL)
- Example:
"https://example.com"
Image
Images from your project's asset library. Click a cell to open the image selector.
- API value: Resource key (string)
- Displayed as: Image thumbnail in the table
Adding a column
- Click the + button at the end of the table header
- Enter a column name
- Select the column type
- Click Add Column
Renaming a column
- Click the dropdown arrow on the column header
- Select Rename column
- Enter the new name
Deleting a column
- Click the dropdown arrow on the column header
- Select Delete column
Deleting a column permanently removes it and all its data. This cannot be undone.
Archived columns
Instead of deleting, you can archive a column to hide it from the table view while preserving the data. Archived columns can be restored from the Settings panel.