This section describes functions available in components based on the Data Table component.
Remove Rows
Removes the rows from the data table specified by the indices provided in the Index
argument.
Function name: removeRows
Arguments:
Field Name | Field Type | Field Description | |
Index | Data Table | Data table with a single String-type field |
Add Row
Inserts the data table provided in the Row
argument into the index position provided by the Index
argument.
Function name: addRow
Arguments:
Field Name | Field Type | Field Description | |
Index | Integer | Row index indicating where the new row should be added. | |
Row | Data Table | Data table containing the data to insert into the data table. Format of the data table |
Reorder Record
Removes the row indicated by Index
and inserts it in the index position specified by After
.
Function name: reorderRecord
Arguments:
Field Name | Field Type | Field Description | |
Index | String | Index of the row to be reordered. | |
After | String | The index position to insert the row. |
Update Cell
Update the cell specified by the Index
and Field
arguments with the value indicated by the Value
argument.
Function name: updateCell
Arguments:
Field Name | Field Type | Field Description | |
Index | String | Row index of the cell to update. | |
Field | String | Field name of the cell to update. | |
Value | Data Table | Data table containing a single field The data type of the |
![]() | The following example illustrates one way of calling the updateCell function:
The expression is used in a binding within the dashboard context where {form/dataTableEditorUpdateCell:updateCell("1","exampleField",'array("value", "This is the new field value")')} The expression can be decomposed as follows:
|
Select Row
Select or deselect a specific row in the data table based on the Record Index. The Record Index may be either the UUID of the row, or a value in the Data Table field indicated by the Record ID Column Name.
This function can also be used to select all rows, deselect all rows, or reverse the selection state of all rows in the data table.
Function name: selectRow
Arguments:
Field Name | Field Type | Field Description | |
Record Index | String | Indicates the row to be selected in the data table based on UUID or the value indicated as the row (record) ID by the Record ID Column Name. | |
Selection Type | Integer | Indicates the type of selection operation to be applied to the row or table. The following options are available:
|
Get Selected Rows
Returns a Data Table containing the Key of each selected row. If a field name is indicated by the property Record ID Column Name, the key will be the value of this field of each selected row. If Record ID Column Name is not configured, key will be the row UUID.
Function name: getSelectedRows
Arguments:
None
Returns:
Field Name | Field Type | Field Description |
Key | String | UUID of the selected rows. |
Reset
When the reset()
function of a data table is called, all selected rows are returned to their initial state. This means any user-entered values are discarded and replaced with the original values. Any filtering or sorting applied to the table by the user is returned to its default state.
Function name: reset
Arguments:
None
Returns:
None
Was this page helpful?