From 8b89a121a94c60916ed096a6df25d2ae78b016be Mon Sep 17 00:00:00 2001 From: NansiYancheva Date: Wed, 6 Nov 2024 22:10:56 +0200 Subject: [PATCH] docs(common): Skip repl in descriptors article --- common-features/data-binding/descriptors.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/common-features/data-binding/descriptors.md b/common-features/data-binding/descriptors.md index 96883ecd8b..1c16aef62a 100644 --- a/common-features/data-binding/descriptors.md +++ b/common-features/data-binding/descriptors.md @@ -29,7 +29,9 @@ You can obtain the applied filtering, searching, sorting, and grouping criteria Use the [`Request` property]({%slug common-features-data-binding-onread%}#event-argument) of the [`OnRead` event argument object](/blazor-ui/api/Telerik.Blazor.Components.ReadEventArgs): -````CS +
+ +````HTML async Task OnReadHandler(...ReadEventArgs args) { // Get the applied filtering and searching criteria. @@ -53,7 +55,9 @@ See the [complete example](#example-with-onread-event-handler) at the bottom of Use the component's state property of the `OnStateChanged` event argument. This approach applies to the Gantt, Grid, and TreeList because they expose the state feature. For example: -````CS +
+ +````HTML async Task OnStateChangedHandler(GridStateEventArgs args) { // Get the applied filtering criteria.