Skip to content

Commit

Permalink
Fixed DataGrid LoadColumnFilterData paging arguments not passed corre…
Browse files Browse the repository at this point in the history
…ctly
  • Loading branch information
enchev committed Nov 5, 2024
1 parent e312d71 commit 9b4aff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Radzen.Blazor/RadzenDataGridHeaderCell.razor
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ else

if (Column.Grid.LoadColumnFilterData.HasDelegate)
{
var args = new DataGridLoadColumnFilterDataEventArgs<TItem>() { Column = Column, Filter = loadDataArgs.Filter };
var args = new DataGridLoadColumnFilterDataEventArgs<TItem>() { Column = Column, Filter = loadDataArgs.Filter, Skip = loadDataArgs.Skip, Top = loadDataArgs.Top };

await Column.Grid.LoadColumnFilterData.InvokeAsync(args);

Expand Down

0 comments on commit 9b4aff7

Please sign in to comment.