docs(common): Skip repl in descriptors article (#2494)

This commit is contained in:
NansiYancheva 2024-11-07 15:23:36 +02:00 коммит произвёл GitHub
Родитель 60ad78d438
Коммит 06abbed549
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -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.
@ -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.