LoadData event Fires continuously after updating from version 1.0.3 to 1.0.4 +

Here is code for DataGrid it works on version 1.0.3 but after updating to version 1.0.4 or any higher version , LoadData event fires continuously.

<RadzenGrid AllowFiltering="false" AllowPaging="true" PageSize="10" AllowSorting="false" Data="@users.Items" TItem="UserDto" Count="users.TotalCount" LoadData="LoadData">
<Columns>
    <RadzenGridColumn TItem="UserDto" Property="Name" Title="Name" />
    <RadzenGridColumn TItem="UserDto" Property="Email" Title="Email" />
</Columns>

When printing event parameter , I'm getting this.

We will fix it in the next update.

1 Like

Hi , I see number of update has been released in last 10 days and this issue is still there.
any update on this issue.
This one issue is holding be back form getting latest version of Radzen.Blaozor.

Thank you !

Not sure about your setup however you can check our demo here:
https://blazor.radzen.com/datagrid-loaddata

I have the same problem with version 1.1.29. It just keeps calling and calling.

Hi @fnils,

What is your setup? Have you checked our demo?

Yes, I looked at your demo. I am not sure what you mean with setup?

I missed that LoadData does not replace Data. After adding Data back it works.