@@ -12,6 +12,7 @@ using REST API.
1212- Pagination
1313- Sortable columns
1414- Configurable column widths
15+ - Editable table
1516- Built in windowing to handle large dataset with thousands of rows
1617- Customizable limiter options
1718- Customizable toolbar with the ability to add custom renderers
@@ -217,8 +218,8 @@ const YourComponent = () =>
217218| toolbar | array | false | \[ ] | Toolbar definition (Check below) |
218219| columns | array | true | - | Columns to display |
219220| styles | object | false | {} | Custom styles for your table |
220- | isEditable | boolean | false | {} | Set whether the table is editable |
221- | isEditing | boolean | false | {} | Set the default state of the table to be in editing mode |
221+ | editable | boolean | false | {} | Set whether the table is editable |
222+ | editing | boolean | false | {} | Set the default state of the table to be in editing mode |
222223| primaryKey | string | true | {} | Set the primary key column of the table for actions like editing. |
223224
224225#### Pagination object
@@ -278,7 +279,7 @@ Note: action of type "editable" is required when you set the table to be editabl
278279| label | string | true | - | Label for the column |
279280| sortable | boolean | false | true | Whether the column is sortable |
280281| filterable | boolean | false | true | Whether the column is filterable |
281- | isEditable | boolean | false | false | When the table is set to be editable, set whether the respective column is among the editable |
282+ | editable | boolean | false | false | When the table is set to be editable, set whether the respective column is among the editable |
282283| visible | boolean | false | true | Whether the column is visible on load |
283284| type | string | true | string | Available types: selection, number, date, string, image, options, actions |
284285| width | integer | true | - | Width of the column |
0 commit comments