Skip to main content

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

  1. Click the + button at the end of the table header
  2. Enter a column name
  3. Select the column type
  4. Click Add Column

Renaming a column

  1. Click the dropdown arrow on the column header
  2. Select Rename column
  3. Enter the new name

Deleting a column

  1. Click the dropdown arrow on the column header
  2. Select Delete column
caution

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.