Column
You can customize each Table column separately by accessing properties through the gear icon ⚙️ in the Table's properties pane. This includes editing existing column properties, adding new custom columns, rearranging columns, and hiding columns.

Content properties
These properties are customizable options available in the property pane of the Column settings.
Column Types
This property allows you to select the appropriate column type for your Table data. Each column type serves a specific function and enhances interactivity. The available column types are:
-
Button: A clickable cell that triggers an onClick event, allowing users to perform actions directly from the Table. The triggeredRow reference property retrieves data from the corresponding row, making it easy to reference that specific entry.
-
Checkbox: Represents a binary value (True/False) and displays checked and unchecked states. You can interact with this column to toggle values. If the Editable property is enabled, you can modify the state directly. If the Editable property is disabled, selecting the checkbox is not possible.
-
Icon Button: A button that displays an icon instead of text. You can configure the onClick event to trigger specific actions. The
triggeredRow
reference property retrieves data from the associated row, similar to the Button type. -
Image: Displays images by interpreting the cell value as an image source URL or base64 data. If the data is invalid, the cell displays
Invalid Image
. -
Menu Button: A set of buttons that expands into a menu when interacted with. You can dynamically add menu items by setting the Menu items source to Dynamic, referencing
{{currentRow}}
in the Source Data property for easy integration with the Table's data. -
Number: Designed for numeric data entry, this column type supports inline editing, allowing modification of values directly within the Table.
-
Plain Text: Displays readable characters for clear understanding. This column type supports inline editing, allowing direct text updates when the Editable property is enabled.
-
Switch: A toggle feature that allows you to turn an item on or off, representing binary values. This column type supports inline editing, allowing direct text updates when the Editable property is enabled.
-
URL: Treats the cell value as a hyperlink, allowing clicks on the cell to open the corresponding URL in a new browser tab. Ensure to include both the domain and suffix of the URL for proper functionality.
-
Video: Displays videos directly within the Table. You can add videos by providing a source file path or URL from supported platforms like YouTube, Facebook, Twitch, and others, enhancing multimedia engagement.
-
Date: Supports custom formatting options for date and time information. You can format and display the date using the Date Format and Display Format properties. This column type supports inline editing, allowing direct text updates when the Editable property is enabled.
-
Select: Enables choosing from a predefined list of options. The Options property should be an array of objects. This column type supports inline editing, allowing direct text updates when the Editable property is enabled. See Select properties.
-
HTML: The HTML column type allows you to display custom UI elements like formatted text, icons, or embedded components by rendering raw HTML content in table cells. You can provide HTML directly from your datasource or use Computed values with
{{}}
bindings for multi-line content. For styling, you can use inline styles, as the<style>
tag is not supported. This column type does not support inline editing or event handling.