Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions common-features/data-binding/descriptors.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<div class="skip-repl"></div>

````HTML
async Task OnReadHandler(...ReadEventArgs args)
{
// Get the applied filtering and searching criteria.
Expand All @@ -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
<div class="skip-repl"></div>

````HTML
async Task OnStateChangedHandler(GridStateEventArgs<Product> args)
{
// Get the applied filtering criteria.
Expand Down
Loading