Hello
I am using ASP.NET CORE EJ 2 version 16.1.0.34 (nuget package).
The Grid's page settings do not seem to work when using the razor syntax.
When setting the page settings using tag-helper syntax the dropdown for the page size is displayed and works correctly.
...
<e-grid-pagesettings pageCount="5" pageSize="10" pageSizes="true"></e-grid-pagesettings>
...
When using razor syntax to achieve the same thing the dropdown is not displayed.
...
.PageSettings(page =>
{
page.PageSize(10);
page.PageSizes(5);
page.PageCount(5);
}
...
Is there anything else that needs to be done when using razor syntax?
Kind regards
Phil