Skip to content

Commit

Permalink
Fix #5452: Datatable onRowEditChange typescript def (#5454)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Nov 29, 2023
1 parent e8f370d commit b9cf104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/datatable/datatable.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1537,7 +1537,7 @@ interface DataTableBaseProps<TValue extends DataTableValueArray> extends Omit<Re
*/
onRowEditCancel?(event: DataTableRowEditEvent): void;
/**
* Callback to invoke when the cancel icon is clicked on row editing mode.
* Callback to invoke when the editing icon is clicked on row editing mode. Use in conjuction with editingRows value from the Datatable to programmatically control editing rows.
* @param {DataTableRowEditEvent} event - Custom row edit event.
*/
onRowEditChange?(event: DataTableRowEditEvent): void;
Expand Down

0 comments on commit b9cf104

Please sign in to comment.