Skip to content

Commit

Permalink
DropDownDataGrid selected row not cleared on value clear
Browse files Browse the repository at this point in the history
  • Loading branch information
enchev committed May 1, 2024
1 parent 37154cc commit 124fca6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Radzen.Blazor/RadzenDropDownDataGrid.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,10 @@ protected override void SelectItemFromValue(object value)
{
selectedItem = null;
selectedItems.Clear();
if (grid != null)
{
InvokeAsync(() => grid.SelectRow(null));
}
}
}

Expand Down

0 comments on commit 124fca6

Please sign in to comment.