Use the LoadData event to get data from a REST service.
In this demo the Employees are loaded from an OData service with the Title and Customers columns using multi-select dropdown filters with FilterTemplate to query related data from the server.
ID | First Name | Last Name | Title | Customers | Title Of Courtesy | Birth Date | Hire Date | Address | City | Region | Postal Code | Country | Home Phone | Extension | Notes |
|---|
1. Set the Data and Count properties.
<RadzenDataGrid Count="@count" Data="@employees"
2. Handle the LoadData event and update the Data and Count backing fields (employees and count in this case).
async Task LoadData(LoadDataArgs args)
{
var result = await service.GetEmployees(filter: args.Filter, top: args.Top, skip: args.Skip, orderby: args.OrderBy, count: true);
employees = result.Value.AsODataEnumerable();
count = result.Count;
}
Radzen Blazor Components, © 2018-2026 Radzen.
Source Code licensed under
MIT