You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this.selectColumn.SelectedItems is not recommend BL0005 Component Parameter outside of the component
publicclassSelectColumn<TGridItem>:ColumnBase<TGridItem>...
/// <summary>/// Gets or sets the list of selected items./// </summary>[Parameter]
public IEnumerable<TGridItem> SelectedItems
{get=>_selectedItems;set{if(_selectedItems!=value){_selectedItems.Clear();_selectedItems.AddRange(value);}}}
Note: items and FilteredItems are update in the background followed by an InvokeAsync(StateHasChanged)
🤔 Expected Behavior
Provide a manual way to reset/rebuild the Selected Item state.
🐛 Bug Report
BTW: In the Demo Site toggling between settings can also reproduce it.
After removing rows from datagrid the select all state remains unaffected.
Before Removing content from the collection
After Removing content
💻 Repro or Code Sample
The only way we were able to get it to update was for force calling the setter
this.selectColumn.SelectedItems is not recommend BL0005 Component Parameter outside of the component
Note: items and FilteredItems are update in the background followed by an InvokeAsync(StateHasChanged)
🤔 Expected Behavior
Provide a manual way to reset/rebuild the Selected Item state.
🌍 Your Environment
The text was updated successfully, but these errors were encountered: