You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/properties.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,8 @@
19
19
| showFilters | Boolean | false | Show filters button to open filters |
20
20
| showSettings | Boolean | false | Show settings button to customize columns |
21
21
| showSerialNumberCol | Boolean | false | Show serial number column |
22
+
| showSelectableCol | Boolean | false | Show checkbox column to select rows ([more details](https://github.com/{{repo}}/discussions/1)) |
23
+
| selectedRowsActions | Array\<String\>\| Array\<Object\>|| List of action buttons to show when rows selected.<br/>`['Delete', 'Change Status']`<br/>-- OR --<br/>`[`<br/> `{ label: 'Delete', value: 'delete' },`<br/> `{ label: 'Change Status', value: 'change_status' },`<br/> `]`|
22
24
| theme | String | light | Default available themes are light and dark. But you could define custom themes and use here. ([more details](theming.md)) |
23
25
| language | String | default | Language name to get i18n text ([more details](internationalization.md)) |
24
26
| tooltipFontSize | String | 14px | Font size for tooltip |
@@ -40,12 +42,13 @@
40
42
41
43
| Name | Type | Default value | Description |
42
44
| --- | --- | --- | --- |
43
-
| id | String || Unique column ID |
45
+
| id | String || Unique column ID (string without space or special characters) |
44
46
| name | String || Column header text |
45
47
| key | String || Property name to get column value from row details |
46
48
| width | String || Width of the column (in px) |
47
49
| align | String | left | CSS text align value (left, right, center) |
48
50
| renderer | Function || Callback method name to render column value |
51
+
| headRenderer | Function || Callback method name to render column header |
49
52
| sticky | Boolean | false | Make the column fixed on scroll horizontally |
50
53
| resizable | Boolean || Allow to resize width of the column |
51
54
| sortable | Boolean || Make the column sortable |
0 commit comments