Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
The SfDropDownButton control currently has no easy way to close the popup window on item select. Due to the popup z index being set so high, it overlays a modal window that I am popping up on ItemSelect. The workaround I had to implement was to create a bool and pop a style override in and out, like:
@if (isPopupHidden) { <style>
.e-dropdown-popup {
visibility: hidden;
}
</style>
}
There should be a ClosePopup() function at the SfDropDownButton object level or something similar.