The $current object represents the current values for the table record being processed.
The $original variable is an immutable copy of the table record at the beginning of the event lifecycle.
The $props variable provides access to the current properties mapped to the User Interface (UI).
$event contains the following details about the currently executing client event.
Example of a row click $event object:
{
"form": {
"id": "0c8e96e9-efba-85ec-83dd-019408a4e547",
"name": "ui_table_basic",
"label": "UI Table Basic"
},
"timestamp": "2025-01-07T20:52:09.231Z",
"trigger": "TableRowClick",
"data": {
"field": "client_duration",
"key": "6870d36e-c6fd-8dd8-821c-0194185e3868"
}
}
Example of a row selection change $event object:
{
"form": {
"id": "0c8e96e9-efba-85ec-83dd-019408a4e547",
"name": "ui_table_basic",
"label": "UI Table Basic"
},
"timestamp": "2025-01-07T20:57:23.371Z",
"trigger": "TableSelectionChange",
"data": {
"field": "tblall_data_types",
"length": 3,
"selected": [
"482686bb-08af-8b33-84f5-0194185e334d",
"6870d36e-c6fd-8dd8-821c-0194185e3868",
"2d7fd485-9118-8dd8-820c-0194185e3d46"
]
}
}
The $current object represents the current values for the table record being processed.
The $original variable is an immutable copy of the table record at the beginning of the event lifecycle.