Consider the following data grid definition: <RadzenDataGrid @ref="grdData" AllowRowSelectOnRowClick="true" Data="@gridItems" SelectionMode="DataGridSelectionMode.Multiple" @bind-Value=@selectedItems>
I had a feeling you might say that, but that is not my experience. I add to the selectedItems list, call StateHasChanged();, and the list does not change. Checking the page afterwards, the selectedItems list does NOT contain the newly added items.
I should add that I am adding to the list during the Change event on the checkbox that determines selection. Is it possible that I'm modifying the list prior to the grid taking control and adding/removing the recently checked item? If so, is there another event that would allow me to manipulate the list.