A data table provides access to a dataset and an associated table model.
The property tableModel gets access to the current table state. The property dataset gets access to the full available data.
tableModel
dataset
You can watch for changes on the property title.
title
const dataTable = ...;dataTable.watch("title",({value})=> { ... }); Copy
const dataTable = ...;dataTable.watch("title",({value})=> { ... });
You can watch the event destroyed.
destroyed
const dataTable = ...;dataTable.on("destroyed",()=> { ... }); Copy
const dataTable = ...;dataTable.on("destroyed",()=> { ... });
Readonly
The table dataset
id of the data table.
The table model
Title of the data table.
Destroy this instance. Delegates destruction to all datasets and tables.
Registers event listener.
A data table provides access to a dataset and an associated table model.
The property
tableModel
gets access to the current table state. The propertydataset
gets access to the full available data.You can watch for changes on the property
title
.You can watch the event
destroyed
.