Hi - I have a very slow SfGrid, and this could be because of the amound of data when OnInitializedAsync. The load is 3,5-4 mb of Json, 3000-4000 rows.
Therefore I have extented the REST.API to be able to return pages, but how is the smartest way to bind to a paging API?
I looked at:
<SfGrid TValue="Order" AllowPaging="true">
<SfDataManager Url="https://secretURL.net/api/GetOrders?CustomerId=1&PageOffset=0&PageSize=30"
Adaptor="Adaptors.WebApiAdaptor" Offline="true"></SfDataManager>
but can I bind directly to grid paging with SfDataManager or do I have to write my own controller, with API calls from pagenumbers in the datagrid?