Add row
Adds a single row to the specified table instance.
Parameter
Parameters | Type | Description |
---|---|---|
Payload | Object | An object where the keys represent the columnId (string) and the values correspond to their respective field types (like number for rating/slider, string for text/textarea etc.). |
Syntax
tableInstance.addRow({ columnId1: value, columnId2: value });
Example
To add a new work experience entry into the employee work experience table, work_table1, specify the relevant column IDs, table_field1, table_field2, along with their corresponding values. (Kissflow, 2 years).
worktableInstance.addRow({ table_field1: “Microsoft”, table_field2: “2 years” });