Initially the datasource is loaded from database data, based on page size total number of pages are calculated. Then why when we change the page, the datasource gets reloaded again. The data was already in datasource from before itself.It should just immediately load data of that particular page. It is hampering performance of whole application for me.
Please suggest.
Using URL Adaptor,Page size 20,Syncfusion version 19.2.0.44
<ejs-grid id="ReportedFlatGrid" allowPaging="true" allowTextWrap="true" allowSorting="true" allowMultiSorting="true" height="100%" width="100%">
<e-data-manager url="/ControllerName/ReportedDatasource" adaptor="UrlAdaptor" />
<e-grid-pagesettings pageSize="20" />
<e-grid-columns>
<e-grid-column ></e-grid-column>
<e-grid-column disableHtmlEncode="false"></e-grid-column>
</e-grid-columns>
</ejs-grid>
public IActionResult ReportedDatasource([FromBody] DataManagerRequest dm)
{}