You must configure the page size in the contructor of the GridODataClient object in the client project to enable paging:
var client = new GridODataClient<Order>(HttpClient, url, query, false, "ordersGrid", columns, 10, locale);
PageSize is an optional parameter of the GridODataClient constructor. If you don't want to enable paging you must call the contructor with no parameter:
var client = new GridODataClient<Order>(HttpClient, url, query, false, "ordersGrid", columns);
You can configure the grid to enable changes on page size from the Razor page.
You have to enable paging as shown in the section before.
Then you have to use the ChangePageSize method of the GridClient object on the Razor page:
var client = new GridODataClient<Order>(HttpClient, url, query, false, "ordersGrid", columns, 10, locale)
.ChangePageSize(true);
A user can change the page size writing the new size and pressing the "Tab" or "Enter" keys.
This field used to go to an specific page writing its number is shown by default. You can hide it using the GoToVisibility method of the GridClient:
var client = new GridODataClient<Order>(HttpClient, url, query, false, "ordersGrid", columns, 10, locale)
.GoToVisibility(false)