Hello!
i am using the nuget Radzen.Blazor library, thank you for making it!
today i ran into a strange error: RadzenCards are duplicating for no reason and appear in places where they shouldn't be. i try to explain with screenshots (ok, can only use one as per forum restrictions):
i have a html table for customers. each customer has an additional <tr> displaying a new razor component. this component shows RadzenCards in a RadzenDataList (the data object is "Scope").
image removed
when i add a new customer (= new row to the table) the radzen cards from the customer below appear in the row of the newly created customer!
i have added debug code to display the "scopes per customer" in simple plaintext, without the Radzen components. the data is correct, the code is correct. the newly created customer has no scopes, so no plaintext output is created (see yellow marking).
when i reload the page, the cards are rendered correctly. see again the yellow marking in the next picture.
image removed
the same happens when i delete the newly created customer (=delete the corresponding html row). suddenly the radzen cards disappear from the row below, but this customer has scopes so the cards should still be there.
image removed
the relevant code to create the RadzenCards is this:
i appreciate your help, but i don't quite follow, i'm very new to blazor. Reload() is a method of what object? the RadzenDataList ? how do i access it from the customers page?
the customers table is defined in Customers.razor like this: