Skip to content

Commit

Permalink
#588 [HxGrid] Data never gets loaded when using PlaceholdersRowCount …
Browse files Browse the repository at this point in the history
…together with InfiniteScroll mode repro
  • Loading branch information
hakenr committed Oct 9, 2023
1 parent 6ac1633 commit 3317252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BlazorAppTest/Pages/HxGrid_InfiniteScroll_Test.razor
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<h1>HxGrid with infinite scroll</h1>

<HxGrid TItem="CultureInfo" DataProvider="@ClientCultureInfosDataProvider" ContentNavigationMode="GridContentNavigationMode.InfiniteScroll" TableContainerCssClass="mt-5" ItemRowHeight="50" HeaderRowCssClass="myheader">
<HxGrid TItem="CultureInfo" PlaceholdersRowCount="100" DataProvider="@ClientCultureInfosDataProvider" ContentNavigationMode="GridContentNavigationMode.InfiniteScroll" TableContainerCssClass="mt-5" ItemRowHeight="50" HeaderRowCssClass="myheader">
<Columns>
<HxGridColumn TItem="CultureInfo" HeaderText="Display Name" ItemTextSelector="@(item => item.DisplayName)" SortKeySelector="@(item => item.DisplayName)" IsDefaultSortColumn="true">
<PlaceholderTemplate>
Expand Down

0 comments on commit 3317252

Please sign in to comment.