From f267c3fa489c209a45849c9bb62a4e70b39ad7b5 Mon Sep 17 00:00:00 2001 From: Vinitha Balasubramanian Date: Thu, 26 Jun 2025 15:42:33 +0530 Subject: [PATCH 1/9] 966305: Included editing events topic in UG --- blazor/datagrid/batch-editing.md | 15 ++++++++++++++- blazor/datagrid/dialog-editing.md | 21 ++++++++++++++++++++- blazor/datagrid/in-line-editing.md | 19 +++++++++++++++++++ 3 files changed, 53 insertions(+), 2 deletions(-) diff --git a/blazor/datagrid/batch-editing.md b/blazor/datagrid/batch-editing.md index b9081fde79..f849cc0db9 100644 --- a/blazor/datagrid/batch-editing.md +++ b/blazor/datagrid/batch-editing.md @@ -1037,4 +1037,17 @@ public class OrderDetails {% endhighlight %} {% endtabs %} -{% previewsample "https://blazorplayground.syncfusion.com/embed/hjrStoqXKmIboOTG?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %} \ No newline at end of file +{% previewsample "https://blazorplayground.syncfusion.com/embed/hjrStoqXKmIboOTG?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %} + +## Supported events for batch editing + +The Syncfusion Blazor DataGrid triggers the following events during batch editing: + +| Event | Description | +|-------|-------------| +| [OnBatchAdd](https://blazor.syncfusion.com/documentation/datagrid/events#onbatchadd) | Triggers before new records are added to the UI when the user clicks the add toolbar item or presses the insert key. | +| [OnBatchSave](https://blazor.syncfusion.com/documentation/datagrid/events#onbatchsave) | Triggers before batch changes (added, edited, deleted data) are saved to the data source. A confirmation popup is displayed when the Update button is clicked. | +| [OnBatchDelete](https://blazor.syncfusion.com/documentation/datagrid/events#onbatchdelete) | Triggers before records are deleted in the Grid. If no rows are selected, a popup prompts the user to select rows for deletion. | +| [OnCellEdit](https://blazor.syncfusion.com/documentation/datagrid/events#oncelledit) | Triggers before a cell enters edit mode in the UI, such as on double-click or pressing F2. | +| [OnCellSave](https://blazor.syncfusion.com/documentation/datagrid/events#oncellsave) | Triggers before cell changes are updated in the UI, such as on pressing Enter or navigating to another cell. | +| [CellSaved](https://blazor.syncfusion.com/documentation/datagrid/events#cellsaved) | Triggers after cell changes are updated in the UI and the edited values are highlighted in the Grid. | \ No newline at end of file diff --git a/blazor/datagrid/dialog-editing.md b/blazor/datagrid/dialog-editing.md index 7c4c112868..850e8bcae3 100644 --- a/blazor/datagrid/dialog-editing.md +++ b/blazor/datagrid/dialog-editing.md @@ -779,4 +779,23 @@ public class ProductDetails {% endhighlight %} {% endtabs %} -{% previewsample "https://blazorplayground.syncfusion.com/embed/LDLyXsZxfZTvqDJz?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %} \ No newline at end of file +{% previewsample "https://blazorplayground.syncfusion.com/embed/LDLyXsZxfZTvqDJz?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %} + +## Supported events for dialog editing + +The Syncfusion Blazor DataGrid triggers the following events during dialog editing: + +| Event | Description | +|-------|-------------| +| [RowCreating](https://blazor.syncfusion.com/documentation/datagrid/events#rowcreating) | Triggers before a new row is added to the Grid. This event is useful for initializing default values or conditionally preventing the add operation. | +| [RowCreated](https://blazor.syncfusion.com/documentation/datagrid/events#rowcreated) | Triggers after a new row is added to the Grid. | +| [RowUpdating](https://blazor.syncfusion.com/documentation/datagrid/events#rowupdating) | Triggers before the edited or newly added data is saved. Used for validating or modifying data before it is committed to the data source. | +| [RowUpdated](https://blazor.syncfusion.com/documentation/datagrid/events#rowupdated) | Triggers after the edited or newly added data is saved to the data source. | +| [RowDeleting](https://blazor.syncfusion.com/documentation/datagrid/events#rowdeleting) | Triggers before a row is deleted from the Grid. This event is used to confirm deletion or cancel the operation based on custom logic. | +| [RowDeleted](https://blazor.syncfusion.com/documentation/datagrid/events#rowdeleted) | Triggers after a row is deleted from the Grid. | +| [EditCanceling](https://blazor.syncfusion.com/documentation/datagrid/events#editcanceling) | Triggers before the cancellation of an edit operation. This event is useful for confirmation prompts or rollback logic before discarding changes. | +| [EditCanceled](https://blazor.syncfusion.com/documentation/datagrid/events#editcanceled) | Triggers after the cancellation of an edit operation. | +| [OnRowEditStart](https://blazor.syncfusion.com/documentation/datagrid/events#onroweditstart) | Triggers before a row enters edit mode. Enables control over data cloning behavior and can be used to prepare the row for editing. | +| [OnBeginEdit](https://blazor.syncfusion.com/documentation/datagrid/events#onbeginedit) | Triggers before a row enters edit mode in the UI, such as on double-click or pressing F2. This event is useful for conditional editing logic. | +| [RowEditing](https://blazor.syncfusion.com/documentation/datagrid/events#rowediting) | Triggers before the edit action is performed. This event is useful for validation or dynamic configuration of the editing interface. | +| [RowEdited](https://blazor.syncfusion.com/documentation/datagrid/events#rowedited) | Triggers after the edit action is completed. | \ No newline at end of file diff --git a/blazor/datagrid/in-line-editing.md b/blazor/datagrid/in-line-editing.md index 6a9afc446e..ac4ca80e1d 100644 --- a/blazor/datagrid/in-line-editing.md +++ b/blazor/datagrid/in-line-editing.md @@ -1269,3 +1269,22 @@ public class OrderDetails {% endtabs %} {% previewsample "https://blazorplayground.syncfusion.com/embed/LthINCtgBmWlAIwy?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %} + +## Supported events for inline editing + +The Syncfusion Blazor DataGrid triggers the following events during inline editing: + +| Event | Description | +|-------|-------------| +| [RowCreating](https://blazor.syncfusion.com/documentation/datagrid/events#rowcreating) | Triggers before a new row is added to the Grid. This event is useful for initializing default values or conditionally preventing the add operation. | +| [RowCreated](https://blazor.syncfusion.com/documentation/datagrid/events#rowcreated) | Triggers after a new row is added to the Grid. | +| [RowUpdating](https://blazor.syncfusion.com/documentation/datagrid/events#rowupdating) | Triggers before the edited or newly added data is saved. Used for validating or modifying data before it is committed to the data source. | +| [RowUpdated](https://blazor.syncfusion.com/documentation/datagrid/events#rowupdated) | Triggers after the edited or newly added data is saved to the data source. | +| [RowDeleting](https://blazor.syncfusion.com/documentation/datagrid/events#rowdeleting) | Triggers before a row is deleted from the Grid. This event is used to confirm deletion or cancel the operation based on custom logic. | +| [RowDeleted](https://blazor.syncfusion.com/documentation/datagrid/events#rowdeleted) | Triggers after a row is deleted from the Grid. | +| [EditCanceling](https://blazor.syncfusion.com/documentation/datagrid/events#editcanceling) | Triggers before the cancellation of an edit operation. This event is useful for confirmation prompts or rollback logic before discarding changes. | +| [EditCanceled](https://blazor.syncfusion.com/documentation/datagrid/events#editcanceled) | Triggers after the cancellation of an edit operation. | +| [OnRowEditStart](https://blazor.syncfusion.com/documentation/datagrid/events#onroweditstart) | Triggers before a row enters edit mode. Enables control over data cloning behavior and can be used to prepare the row for editing. | +| [OnBeginEdit](https://blazor.syncfusion.com/documentation/datagrid/events#onbeginedit) | Triggers before a row enters edit mode in the UI, such as on double-click or pressing F2. This event is useful for conditional editing logic. | +| [RowEditing](https://blazor.syncfusion.com/documentation/datagrid/events#rowediting) | Triggers before the edit action is performed. This event is useful for validation or dynamic configuration of the editing interface. | +| [RowEdited](https://blazor.syncfusion.com/documentation/datagrid/events#rowedited) | Triggers after the edit action is completed. | \ No newline at end of file From 9da78488a1a95314373e69e2344d1fc3371c3c20 Mon Sep 17 00:00:00 2001 From: Vinitha Balasubramanian Date: Thu, 26 Jun 2025 18:25:45 +0530 Subject: [PATCH 2/9] 966305: Addressed review corrections --- blazor/datagrid/batch-editing.md | 2 +- blazor/datagrid/dialog-editing.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/blazor/datagrid/batch-editing.md b/blazor/datagrid/batch-editing.md index f849cc0db9..5af1aa46cb 100644 --- a/blazor/datagrid/batch-editing.md +++ b/blazor/datagrid/batch-editing.md @@ -1049,5 +1049,5 @@ The Syncfusion Blazor DataGrid triggers the following events during batch editin | [OnBatchSave](https://blazor.syncfusion.com/documentation/datagrid/events#onbatchsave) | Triggers before batch changes (added, edited, deleted data) are saved to the data source. A confirmation popup is displayed when the Update button is clicked. | | [OnBatchDelete](https://blazor.syncfusion.com/documentation/datagrid/events#onbatchdelete) | Triggers before records are deleted in the Grid. If no rows are selected, a popup prompts the user to select rows for deletion. | | [OnCellEdit](https://blazor.syncfusion.com/documentation/datagrid/events#oncelledit) | Triggers before a cell enters edit mode in the UI, such as on double-click or pressing F2. | -| [OnCellSave](https://blazor.syncfusion.com/documentation/datagrid/events#oncellsave) | Triggers before cell changes are updated in the UI, such as on pressing Enter or navigating to another cell. | +| [OnCellSave](https://blazor.syncfusion.com/documentation/datagrid/events#oncellsave) | Triggers before cell changes are updated in the UI, such as on pressing Enter key or navigating to another cell. | | [CellSaved](https://blazor.syncfusion.com/documentation/datagrid/events#cellsaved) | Triggers after cell changes are updated in the UI and the edited values are highlighted in the Grid. | \ No newline at end of file diff --git a/blazor/datagrid/dialog-editing.md b/blazor/datagrid/dialog-editing.md index 850e8bcae3..51d8109723 100644 --- a/blazor/datagrid/dialog-editing.md +++ b/blazor/datagrid/dialog-editing.md @@ -796,6 +796,6 @@ The Syncfusion Blazor DataGrid triggers the following events during dialog editi | [EditCanceling](https://blazor.syncfusion.com/documentation/datagrid/events#editcanceling) | Triggers before the cancellation of an edit operation. This event is useful for confirmation prompts or rollback logic before discarding changes. | | [EditCanceled](https://blazor.syncfusion.com/documentation/datagrid/events#editcanceled) | Triggers after the cancellation of an edit operation. | | [OnRowEditStart](https://blazor.syncfusion.com/documentation/datagrid/events#onroweditstart) | Triggers before a row enters edit mode. Enables control over data cloning behavior and can be used to prepare the row for editing. | -| [OnBeginEdit](https://blazor.syncfusion.com/documentation/datagrid/events#onbeginedit) | Triggers before a row enters edit mode in the UI, such as on double-click or pressing F2. This event is useful for conditional editing logic. | +| [OnBeginEdit](https://blazor.syncfusion.com/documentation/datagrid/events#onbeginedit) | Triggers before a row enters edit mode in the UI, such as on double-click or pressing F2 key. This event is useful for conditional editing logic. | | [RowEditing](https://blazor.syncfusion.com/documentation/datagrid/events#rowediting) | Triggers before the edit action is performed. This event is useful for validation or dynamic configuration of the editing interface. | | [RowEdited](https://blazor.syncfusion.com/documentation/datagrid/events#rowedited) | Triggers after the edit action is completed. | \ No newline at end of file From 14f226bc3afb8cf0ffc860a8ff20462b0a590a75 Mon Sep 17 00:00:00 2001 From: Vinitha Balasubramanian Date: Thu, 26 Jun 2025 19:19:36 +0530 Subject: [PATCH 3/9] 966305: Added notes section --- blazor/datagrid/dialog-editing.md | 19 +------------------ blazor/datagrid/in-line-editing.md | 8 +++++--- 2 files changed, 6 insertions(+), 21 deletions(-) diff --git a/blazor/datagrid/dialog-editing.md b/blazor/datagrid/dialog-editing.md index 51d8109723..195984a64b 100644 --- a/blazor/datagrid/dialog-editing.md +++ b/blazor/datagrid/dialog-editing.md @@ -781,21 +781,4 @@ public class ProductDetails {% previewsample "https://blazorplayground.syncfusion.com/embed/LDLyXsZxfZTvqDJz?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %} -## Supported events for dialog editing - -The Syncfusion Blazor DataGrid triggers the following events during dialog editing: - -| Event | Description | -|-------|-------------| -| [RowCreating](https://blazor.syncfusion.com/documentation/datagrid/events#rowcreating) | Triggers before a new row is added to the Grid. This event is useful for initializing default values or conditionally preventing the add operation. | -| [RowCreated](https://blazor.syncfusion.com/documentation/datagrid/events#rowcreated) | Triggers after a new row is added to the Grid. | -| [RowUpdating](https://blazor.syncfusion.com/documentation/datagrid/events#rowupdating) | Triggers before the edited or newly added data is saved. Used for validating or modifying data before it is committed to the data source. | -| [RowUpdated](https://blazor.syncfusion.com/documentation/datagrid/events#rowupdated) | Triggers after the edited or newly added data is saved to the data source. | -| [RowDeleting](https://blazor.syncfusion.com/documentation/datagrid/events#rowdeleting) | Triggers before a row is deleted from the Grid. This event is used to confirm deletion or cancel the operation based on custom logic. | -| [RowDeleted](https://blazor.syncfusion.com/documentation/datagrid/events#rowdeleted) | Triggers after a row is deleted from the Grid. | -| [EditCanceling](https://blazor.syncfusion.com/documentation/datagrid/events#editcanceling) | Triggers before the cancellation of an edit operation. This event is useful for confirmation prompts or rollback logic before discarding changes. | -| [EditCanceled](https://blazor.syncfusion.com/documentation/datagrid/events#editcanceled) | Triggers after the cancellation of an edit operation. | -| [OnRowEditStart](https://blazor.syncfusion.com/documentation/datagrid/events#onroweditstart) | Triggers before a row enters edit mode. Enables control over data cloning behavior and can be used to prepare the row for editing. | -| [OnBeginEdit](https://blazor.syncfusion.com/documentation/datagrid/events#onbeginedit) | Triggers before a row enters edit mode in the UI, such as on double-click or pressing F2 key. This event is useful for conditional editing logic. | -| [RowEditing](https://blazor.syncfusion.com/documentation/datagrid/events#rowediting) | Triggers before the edit action is performed. This event is useful for validation or dynamic configuration of the editing interface. | -| [RowEdited](https://blazor.syncfusion.com/documentation/datagrid/events#rowedited) | Triggers after the edit action is completed. | \ No newline at end of file +> For information about the events triggered during dialog editing, please refer to this [documentation](https://blazor.syncfusion.com/documentation/datagrid/in-line-editing#supported-events-for-inline-and-dialog-editing). \ No newline at end of file diff --git a/blazor/datagrid/in-line-editing.md b/blazor/datagrid/in-line-editing.md index ac4ca80e1d..4158ab7252 100644 --- a/blazor/datagrid/in-line-editing.md +++ b/blazor/datagrid/in-line-editing.md @@ -1270,9 +1270,9 @@ public class OrderDetails {% previewsample "https://blazorplayground.syncfusion.com/embed/LthINCtgBmWlAIwy?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %} -## Supported events for inline editing +## Supported events for inline and dialog editing -The Syncfusion Blazor DataGrid triggers the following events during inline editing: +The Syncfusion Blazor DataGrid triggers the following events during inline and dialog editing: | Event | Description | |-------|-------------| @@ -1287,4 +1287,6 @@ The Syncfusion Blazor DataGrid triggers the following events during inline editi | [OnRowEditStart](https://blazor.syncfusion.com/documentation/datagrid/events#onroweditstart) | Triggers before a row enters edit mode. Enables control over data cloning behavior and can be used to prepare the row for editing. | | [OnBeginEdit](https://blazor.syncfusion.com/documentation/datagrid/events#onbeginedit) | Triggers before a row enters edit mode in the UI, such as on double-click or pressing F2. This event is useful for conditional editing logic. | | [RowEditing](https://blazor.syncfusion.com/documentation/datagrid/events#rowediting) | Triggers before the edit action is performed. This event is useful for validation or dynamic configuration of the editing interface. | -| [RowEdited](https://blazor.syncfusion.com/documentation/datagrid/events#rowedited) | Triggers after the edit action is completed. | \ No newline at end of file +| [RowEdited](https://blazor.syncfusion.com/documentation/datagrid/events#rowedited) | Triggers after the edit action is completed. | + +> The same events are also applicable when using **Dialog** editing mode. \ No newline at end of file From 9fd68a5086a6a2a34042e03d66ee0b7fb3d4db09 Mon Sep 17 00:00:00 2001 From: Vinitha Balasubramanian Date: Thu, 26 Jun 2025 19:33:41 +0530 Subject: [PATCH 4/9] 966305: Updated content --- blazor/datagrid/batch-editing.md | 2 +- blazor/datagrid/dialog-editing.md | 2 +- blazor/datagrid/in-line-editing.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/blazor/datagrid/batch-editing.md b/blazor/datagrid/batch-editing.md index 5af1aa46cb..95d395b196 100644 --- a/blazor/datagrid/batch-editing.md +++ b/blazor/datagrid/batch-editing.md @@ -1041,7 +1041,7 @@ public class OrderDetails ## Supported events for batch editing -The Syncfusion Blazor DataGrid triggers the following events during batch editing: +The Syncfusion Blazor DataGrid triggers the following events during `Batch` editing: | Event | Description | |-------|-------------| diff --git a/blazor/datagrid/dialog-editing.md b/blazor/datagrid/dialog-editing.md index 195984a64b..1ea87df616 100644 --- a/blazor/datagrid/dialog-editing.md +++ b/blazor/datagrid/dialog-editing.md @@ -781,4 +781,4 @@ public class ProductDetails {% previewsample "https://blazorplayground.syncfusion.com/embed/LDLyXsZxfZTvqDJz?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %} -> For information about the events triggered during dialog editing, please refer to this [documentation](https://blazor.syncfusion.com/documentation/datagrid/in-line-editing#supported-events-for-inline-and-dialog-editing). \ No newline at end of file +> For information about the events triggered during `Dialog` editing, please refer to this [documentation](https://blazor.syncfusion.com/documentation/datagrid/in-line-editing#supported-events-for-inline-and-dialog-editing). \ No newline at end of file diff --git a/blazor/datagrid/in-line-editing.md b/blazor/datagrid/in-line-editing.md index 4158ab7252..7db1a6a2f5 100644 --- a/blazor/datagrid/in-line-editing.md +++ b/blazor/datagrid/in-line-editing.md @@ -1272,7 +1272,7 @@ public class OrderDetails ## Supported events for inline and dialog editing -The Syncfusion Blazor DataGrid triggers the following events during inline and dialog editing: +The Syncfusion Blazor DataGrid triggers the following events during `Inline` and `Dialog` editing: | Event | Description | |-------|-------------| From b6f84768340d95e7c49eae3756c6a0afc2cefebf Mon Sep 17 00:00:00 2001 From: JamunaSundaramSF3699 Date: Mon, 30 Jun 2025 11:52:49 +0530 Subject: [PATCH 5/9] documentation(966305):updated --- blazor/datagrid/batch-editing.md | 2 +- blazor/datagrid/in-line-editing.md | 34 +++++++++++++++++++++++++----- 2 files changed, 30 insertions(+), 6 deletions(-) diff --git a/blazor/datagrid/batch-editing.md b/blazor/datagrid/batch-editing.md index 95d395b196..81342d73f2 100644 --- a/blazor/datagrid/batch-editing.md +++ b/blazor/datagrid/batch-editing.md @@ -1041,7 +1041,7 @@ public class OrderDetails ## Supported events for batch editing -The Syncfusion Blazor DataGrid triggers the following events during `Batch` editing: +Batch editing in the Syncfusion Blazor DataGrid offers a powerful way to edit multiple records simultaneously. Understanding the sequence and purpose of events triggered during this process enables users to customize or extend the data Grid's functionality. This section outlines the key events associated with batch editing, providing essential information to harness the full potential of this feature. | Event | Description | |-------|-------------| diff --git a/blazor/datagrid/in-line-editing.md b/blazor/datagrid/in-line-editing.md index 7db1a6a2f5..e49ee64840 100644 --- a/blazor/datagrid/in-line-editing.md +++ b/blazor/datagrid/in-line-editing.md @@ -1272,21 +1272,45 @@ public class OrderDetails ## Supported events for inline and dialog editing -The Syncfusion Blazor DataGrid triggers the following events during `Inline` and `Dialog` editing: +Inline and Dialog editing in the Syncfusion Blazor DataGrid provide flexible ways to modify records, catering to various user needs. This section outlines the key events triggered during the editing lifecycle, including adding, editing, updating, deleting, and cancelling, to help you effectively implement and customize the grid’s behavior for enhanced user interaction. + +**Sequence of events** + +* **Adding a new record** | Event | Description | |-------|-------------| | [RowCreating](https://blazor.syncfusion.com/documentation/datagrid/events#rowcreating) | Triggers before a new row is added to the Grid. This event is useful for initializing default values or conditionally preventing the add operation. | | [RowCreated](https://blazor.syncfusion.com/documentation/datagrid/events#rowcreated) | Triggers after a new row is added to the Grid. | + +* **Editing a record** + +| Event | Description | +|-------|-------------| +| [OnRowEditStart](https://blazor.syncfusion.com/documentation/datagrid/events#onroweditstart) | Triggers before a row enters edit mode. Enables control over data cloning behavior and can be used to prepare the row for editing. | +| [OnBeginEdit](https://blazor.syncfusion.com/documentation/datagrid/events#onbeginedit) | Triggers before a row enters edit mode in the UI, such as on double-click or pressing F2. This event is useful for conditional editing logic. | +| [RowEditing](https://blazor.syncfusion.com/documentation/datagrid/events#rowediting) | Triggers before the edit action is performed. This event is useful for validation or dynamic configuration of the editing interface. | +| [RowEdited](https://blazor.syncfusion.com/documentation/datagrid/events#rowedited) | Triggers after the edit action is completed. | + +* **Saving (Updating) a record** + +| Event | Description | +|-------|-------------| | [RowUpdating](https://blazor.syncfusion.com/documentation/datagrid/events#rowupdating) | Triggers before the edited or newly added data is saved. Used for validating or modifying data before it is committed to the data source. | | [RowUpdated](https://blazor.syncfusion.com/documentation/datagrid/events#rowupdated) | Triggers after the edited or newly added data is saved to the data source. | + +* **Deleting a record** + +| Event | Description | +|-------|-------------| | [RowDeleting](https://blazor.syncfusion.com/documentation/datagrid/events#rowdeleting) | Triggers before a row is deleted from the Grid. This event is used to confirm deletion or cancel the operation based on custom logic. | | [RowDeleted](https://blazor.syncfusion.com/documentation/datagrid/events#rowdeleted) | Triggers after a row is deleted from the Grid. | + +* **Cancelling an Edit Operation** + +| Event | Description | +|-------|-------------| | [EditCanceling](https://blazor.syncfusion.com/documentation/datagrid/events#editcanceling) | Triggers before the cancellation of an edit operation. This event is useful for confirmation prompts or rollback logic before discarding changes. | | [EditCanceled](https://blazor.syncfusion.com/documentation/datagrid/events#editcanceled) | Triggers after the cancellation of an edit operation. | -| [OnRowEditStart](https://blazor.syncfusion.com/documentation/datagrid/events#onroweditstart) | Triggers before a row enters edit mode. Enables control over data cloning behavior and can be used to prepare the row for editing. | -| [OnBeginEdit](https://blazor.syncfusion.com/documentation/datagrid/events#onbeginedit) | Triggers before a row enters edit mode in the UI, such as on double-click or pressing F2. This event is useful for conditional editing logic. | -| [RowEditing](https://blazor.syncfusion.com/documentation/datagrid/events#rowediting) | Triggers before the edit action is performed. This event is useful for validation or dynamic configuration of the editing interface. | -| [RowEdited](https://blazor.syncfusion.com/documentation/datagrid/events#rowedited) | Triggers after the edit action is completed. | > The same events are also applicable when using **Dialog** editing mode. \ No newline at end of file From 78bdaec01d7d35bd4cc7730890fc9e58a166368c Mon Sep 17 00:00:00 2001 From: JamunaSundaramSF3699 Date: Mon, 30 Jun 2025 12:01:16 +0530 Subject: [PATCH 6/9] documentation(966305):updated --- blazor/datagrid/in-line-editing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blazor/datagrid/in-line-editing.md b/blazor/datagrid/in-line-editing.md index e49ee64840..487adbbe40 100644 --- a/blazor/datagrid/in-line-editing.md +++ b/blazor/datagrid/in-line-editing.md @@ -1272,7 +1272,7 @@ public class OrderDetails ## Supported events for inline and dialog editing -Inline and Dialog editing in the Syncfusion Blazor DataGrid provide flexible ways to modify records, catering to various user needs. This section outlines the key events triggered during the editing lifecycle, including adding, editing, updating, deleting, and cancelling, to help you effectively implement and customize the grid’s behavior for enhanced user interaction. +Inline and Dialog editing in the Syncfusion Blazor DataGrid provide flexible ways to modify records, catering to various user needs. This section outlines the key events triggered during the editing lifecycle, including adding, editing, updating, deleting, and canceling, to help you effectively implement and customize the grid’s behavior for enhanced user interaction. **Sequence of events** @@ -1306,7 +1306,7 @@ Inline and Dialog editing in the Syncfusion Blazor DataGrid provide flexible way | [RowDeleting](https://blazor.syncfusion.com/documentation/datagrid/events#rowdeleting) | Triggers before a row is deleted from the Grid. This event is used to confirm deletion or cancel the operation based on custom logic. | | [RowDeleted](https://blazor.syncfusion.com/documentation/datagrid/events#rowdeleted) | Triggers after a row is deleted from the Grid. | -* **Cancelling an Edit Operation** +* **Canceling an edit operation** | Event | Description | |-------|-------------| From 5c615fb438d88fa343a89b9ce996f73420bd80cd Mon Sep 17 00:00:00 2001 From: JamunaSundaramSF3699 Date: Mon, 30 Jun 2025 12:05:59 +0530 Subject: [PATCH 7/9] documentation(966305):updated --- blazor/datagrid/in-line-editing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blazor/datagrid/in-line-editing.md b/blazor/datagrid/in-line-editing.md index 487adbbe40..4f590d8e6f 100644 --- a/blazor/datagrid/in-line-editing.md +++ b/blazor/datagrid/in-line-editing.md @@ -1272,7 +1272,7 @@ public class OrderDetails ## Supported events for inline and dialog editing -Inline and Dialog editing in the Syncfusion Blazor DataGrid provide flexible ways to modify records, catering to various user needs. This section outlines the key events triggered during the editing lifecycle, including adding, editing, updating, deleting, and canceling, to help you effectively implement and customize the grid’s behavior for enhanced user interaction. +Inline and Dialog editing in the Syncfusion Blazor DataGrid provide flexible ways to modify records, catering to various user needs. This section outlines the key events triggered during the editing lifecycle, including adding, editing, updating, deleting, and canceling, to help you effectively implement and customize the Grid’s behavior for enhanced user interaction. **Sequence of events** From 311ba353fddf9e5be9b5d8df920fb4bfccafb067 Mon Sep 17 00:00:00 2001 From: JamunaSundaramSF3699 Date: Mon, 30 Jun 2025 12:06:30 +0530 Subject: [PATCH 8/9] documentation(966305):updated --- blazor/datagrid/in-line-editing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blazor/datagrid/in-line-editing.md b/blazor/datagrid/in-line-editing.md index 4f590d8e6f..d6b3644938 100644 --- a/blazor/datagrid/in-line-editing.md +++ b/blazor/datagrid/in-line-editing.md @@ -1272,7 +1272,7 @@ public class OrderDetails ## Supported events for inline and dialog editing -Inline and Dialog editing in the Syncfusion Blazor DataGrid provide flexible ways to modify records, catering to various user needs. This section outlines the key events triggered during the editing lifecycle, including adding, editing, updating, deleting, and canceling, to help you effectively implement and customize the Grid’s behavior for enhanced user interaction. +Inline and dialog editing in the Syncfusion Blazor DataGrid provide flexible ways to modify records, catering to various user needs. This section outlines the key events triggered during the editing lifecycle, including adding, editing, updating, deleting, and canceling, to help you effectively implement and customize the Grid’s behavior for enhanced user interaction. **Sequence of events** From 948de81efb93af358a193eed6f1cccc6d3822166 Mon Sep 17 00:00:00 2001 From: JamunaSundaramSF3699 Date: Mon, 30 Jun 2025 12:45:15 +0530 Subject: [PATCH 9/9] documentation(966305):Updated. --- blazor/datagrid/in-line-editing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blazor/datagrid/in-line-editing.md b/blazor/datagrid/in-line-editing.md index d6b3644938..7d4c84b9c6 100644 --- a/blazor/datagrid/in-line-editing.md +++ b/blazor/datagrid/in-line-editing.md @@ -1272,7 +1272,7 @@ public class OrderDetails ## Supported events for inline and dialog editing -Inline and dialog editing in the Syncfusion Blazor DataGrid provide flexible ways to modify records, catering to various user needs. This section outlines the key events triggered during the editing lifecycle, including adding, editing, updating, deleting, and canceling, to help you effectively implement and customize the Grid’s behavior for enhanced user interaction. +Inline and dialog editing in the Syncfusion Blazor DataGrid provide flexible ways to modify records, catering to various user needs. This section outlines the key events triggered during the editing operations, including adding, editing, updating, deleting, and canceling, to help you effectively implement and customize the Grid’s behavior for enhanced user interaction. **Sequence of events**