RadzenDropDown close popUp after selectItem()

Is there way to close popUp after i select item from code?

` <RadzenDropDown id="@item.Id" @ref=@item.Component                          
                            class="w-100"
                            Disabled=@(item.ReadOnly && !(item.EditOnCreate && Create))
                            AllowClear="@(!item.Mandatory)" 
                            TValue="string"
                            AllowFiltering="false" 
                            AllowVirtualization="true"
                            Data=@itemList.Values                           
                            @bind-Value=@itemList.Value                           
                            Change=@(args => OnChange(item.Id, args)) />`

After call this code selected item change, but popUp still open.

rdd.SelectItem(itemList.Values[0]);
2 Likes
2 Likes