You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/filter/events.md
+55-1Lines changed: 55 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,13 +12,67 @@ position: 11
12
12
13
13
This article explains the available events for the Telerik Filter for Blazor:
14
14
15
+
*[OnUpdate](#onupdate)
15
16
*[ValueChanged](#valuechanged)
16
17
18
+
## OnUpdate
19
+
20
+
The `OnUpdate` event fires when the user changes the Filter `Value`. The component is designed for one-way binding and works directly with the object reference of the bound `CompositeFilterDescriptor`. The component updates the `Value` internally. Use the `OnUpdate` event to handle any additional logic when the Filter `Value` is modified.
21
+
22
+
>caption Handle OnUpdate
23
+
24
+
````RAZOR
25
+
@using Telerik.DataSource
26
+
27
+
<div class="info-note">Change any filter value to trigger the event and see the message update from the OnUpdate handler.</div>
0 commit comments