Hi,
I have in a serverside Blazor page a grid, which can paging, filtering and sorting.
In Kendo UI with Javascript the grid component provide a put request with filter, sort, page capabilities, i.e.
{
"sort": "Column1-desc",
"page": "1",
"pageSize": "10",
"group": "",
"filter": "Column2~eq~1~and~Column3~gt~10",
}
which return the data in json format.
Instead of showing the page with the grid I want create an url which returns the json data. Possible as GET Request with Parameter:
/api?sort=Column1-desc&page=1&pageSize=10&filter=Column2~eq~1~and~Column3~gt~10
But a PUT request with the paramter of Kendo UI is also possible.
Do you have an idea or example, how I can extend my Blazor web app?
Best regards,
Peter