Hi Guillermo,
Thanks for using Syncfusion products.
Query: Specifying the total record count?
To achieve your requirement, we suggest you to use custom binding feature of grid, for specifying the total record count in essential grid. Please refer the below code snippet for further details.
Configure the grid to use custom binding with the EnableOnDemand() method.
@(Html.Syncfusion().Grid<Order>("OrdersGrid")
.Datasource(Model)
.Caption("Orders")
.EnableOnDemand()
)
If the paging feature is enabled, you need to set TotalRecordCount. This field is required to display the grid pager properly.
@(Html.Syncfusion().Grid<Order>("OrdersGrid")
.Datasource(Model)
.Caption("Orders")
.EnableOnDemand()
.TotalRecordCount(200)
)
Please refer the below link to know further details about custom binding features.
http://mvc.syncfusion.com/demos/ui/grid/DataBinding/CustomBinding
For your convenience we have attached a sample for the above scenario. Please refer the below link to download it.
Please let us know if you have any concerns.
Regards,
Ajith R
Hi Guillermo,
Thanks for your update. We are glad to know that your issue has been resolved.
Please let us know if you have any other concerns so that we will be happy to
help you out.
Regards,
Ajith R
is it possible to use a paging without total number of records (records a lot, and the total amount does not matter), the main thing is to be available to the next page without going to the end.
usual in such cases is requested for a single entry is more than I show to find out there is or not.