Skip to content

Commit ba57ae4

Browse files
998096: Release notes
1 parent 307f732 commit ba57ae4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

blazor/query-builder/events.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Enable drag-and-drop by setting the [`AllowDragAndDrop`](https://help.syncfusion
116116

117117
### RuleDragStarting
118118

119-
Invoked before a rule or group drag starts. You can cancel the drag by setting args.Cancel = true.
119+
This event is triggered **before** a rule or an entire group starts being dragged.The event arguments contain information about the dragged element.
120120

121121
```cshtml
122122
<SfQueryBuilder TValue="Order" DataSource="@Data" AllowDragAndDrop="true">
@@ -133,7 +133,7 @@ Invoked before a rule or group drag starts. You can cancel the drag by setting a
133133

134134
### RuleDropping
135135

136-
Invoked before a rule or group is dropped on another. You can cancel the drop by setting args.Cancel = true.
136+
The RuleDropping event fires just before the dragged rule or group is dropped onto a target location. You can use this event to validate the drop target or modify the drop behavior dynamically.
137137

138138
```cshtml
139139
<SfQueryBuilder TValue="Order" DataSource="@Data" AllowDragAndDrop="true">
@@ -150,7 +150,7 @@ Invoked before a rule or group is dropped on another. You can cancel the drop by
150150

151151
### RuleDropped
152152

153-
Raised after a successful drop is completed.
153+
This event is raised after a drag-and-drop operation has successfully completed and the query model has been updated.
154154

155155
```cshtml
156156
<SfQueryBuilder TValue="Order" DataSource="@Data" AllowDragAndDrop="true">

0 commit comments

Comments
 (0)