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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

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.