Skip to content

Commit

Permalink
chore(data-table): add missing (rowClick) event to documentation (#928)
Browse files Browse the repository at this point in the history
Data table readme was missing rowClick event.
  • Loading branch information
willrpike authored and emoralesb05 committed Oct 20, 2017
1 parent 3c7c5a1 commit b2d8cc2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/platform/core/data-table/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Properties:
| `compareWith` | `function(row, model)` | Allows custom comparison between row and model to see if row is selected or not.
| `sortChange` | `function` | Event emitted when the column headers are clicked. [sortable] needs to be enabled. Emits an [ITdDataTableSortEvent] implemented object.
| `rowSelect` | `function` | Event emitted when a row is selected/deselected. [selectable] needs to be enabled. Emits an [ITdDataTableSelectEvent] implemented object.
| `rowClick` | `function` | Event emitted when a row is clicked. [clickable] needs to be enabled. Emits an [ITdDataTableRowClickEvent] implemented object.
| `selectAll` | `function` | Event emitted when all rows are selected/deselected by the all checkbox. [selectable] needs to be enabled. Emits an [ITdDataTableSelectAllEvent] implemented object.
| `refresh` | `function` | Refreshes data table and rerenders [data] and [columns]

Expand Down

0 comments on commit b2d8cc2

Please sign in to comment.