I have a grid and I want to pop up an animation container with content specific to a row when a button is clicked in that row.
How do I reference the correct animation container? No matter which button I click, it always loads the last animation container.
I've set @ref="notesPopup" for the animation container in the grid template
In code:
TelerikAnimationContainer notesPopup;
async Task ToggleNotes()
{
await notesPopup.ToggleAsync();
}
I think the question is how do I dynamically set the @ref and reference it in code?
Thank you