Upon sending the values to the attributes for the TelerikGrid the UI part of them displays, but I noticed even though I send default 5 for the pagesize it loads the full list regardless. The Sortable columns on the grid has the icon, but when clicking it actually doesn't trigger off anything. Filter shows up the icon, but when i click it nothing happens. Just to make the paging in footer of the grid show up for dropdownlist to select row size i had to upgrade to 2.28 to make it work with GridPagerSettings.
I am sure someone else has experience this, can any assistance happen here. below is what i have in the component.
<TelerikGrid @ref="grid"Data="@Rows"
Class="@GetCssClasses()"
OnRowClick="@HandleRowClick"
Pageable="@HasPages"
PageSize="@RowsPerPage"
TotalCount="@TotalRowCount"
Sortable="@IsSort"
FilterMode="GridFilterMode.FilterMenu"
OnRead="@HandleDataRequest"
ScrollMode="@scrollMode"
@bind-Page="@CurrentPage"
Height="100%"
RowHeight="54"
SelectionMode="@SelectionMode"
SelectedItemsChanged="((IEnumerable<Row> rows) => HandleMultiSelect(rows))"
OnRowRender="@((args) => OnRowRender(args))">
<GridSettings>
<GridPagerSettings InputType="PagerInputType.Buttons" PageSizes="@PageSizesList" ButtonCount="3" />
</GridSettings>
<GridColumns>
<CascadingValue Name="Table" Value="@this">@Columns</CascadingValue>
</GridColumns>
</TelerikGrid>