class Table

Extends:
UIComponent, ContainerComponent, ScrollableComponent

Description:

A Table UI component displays data in a structured grid of rows and columns, making it easy to read, sort, and interact with.
It supports features like column resizing, column reordering, sorting, filtering, multiple data types and more.

Column object format is shown in example below. Rows are arrays of values (cells), each value for a corresponding column. Row cell data type must match the data type required for it's column type.

// NOTE: When adding a new column, only "text" is required for the column, other properties are optional.

Constructor

constructor([text])

Create Table UI component.

Parameters:

Name Type Description

[text]

String

Text value held by the component. It can be used as a Tab text when the Table is added to Tabs component.

Members

Methods

From this class:

Inherited from UIComponent:

Inherited from ContainerComponent:

Inherited from ScrollableComponent:

Also See: