From 51da4bd4b7a0b13548b6d3f20d28dd7f55f4bcef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Mon, 18 Jul 2022 09:02:37 +0300 Subject: [PATCH] fixed typing error --- src/views/datatable/DataTableDoc.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/datatable/DataTableDoc.vue b/src/views/datatable/DataTableDoc.vue index f8998b438..ef7e9a4e0 100755 --- a/src/views/datatable/DataTableDoc.vue +++ b/src/views/datatable/DataTableDoc.vue @@ -1242,7 +1242,7 @@ export default { -

Row Editing is specified by setting cellEdit as row, defining editingRows with the v-model directive to hold the reference of the editing rows, +

Row Editing is specified by setting editMode as row, defining editingRows with the v-model directive to hold the reference of the editing rows, adding a row editor column to provide the editing controls and implementing @row-edit-save to update the original row data. Note that since editingRows is two-way binding enabled, you may use it to initially display one or more rows in editing more or programmatically toggle row editing.