Fixed #4120 - DataTable: Selection and Row/Cell editing : Cannot input space character (#4333)

* Fixed #4120 - DataTable: Selection and Row/Cell editing : Cannot input space character

* Fixed #4337 - DataTable: editingRows is not reactive
pull/4142/head
Nicolas Granjon 2023-09-05 03:52:13 +02:00 committed by GitHub
parent 07e9773db7
commit 88ac7e28f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@
@dblclick="onRowDblClick($event, rowData, getRowIndex(index))" @dblclick="onRowDblClick($event, rowData, getRowIndex(index))"
@contextmenu="onRowRightClick($event, rowData, getRowIndex(index))" @contextmenu="onRowRightClick($event, rowData, getRowIndex(index))"
@touchend="onRowTouchEnd($event)" @touchend="onRowTouchEnd($event)"
@keydown="onRowKeyDown($event, rowData, getRowIndex(index))" @keydown.self="onRowKeyDown($event, rowData, getRowIndex(index))"
@mousedown="onRowMouseDown($event)" @mousedown="onRowMouseDown($event)"
@dragstart="onRowDragStart($event, getRowIndex(index))" @dragstart="onRowDragStart($event, getRowIndex(index))"
@dragover="onRowDragOver($event, getRowIndex(index))" @dragover="onRowDragOver($event, getRowIndex(index))"