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!

4
Votes

Allow creation of simple dialog box through code only, without having to define a template for it, as this is cumbersome for very simple dialogs. Examples:

MessageBox.Show("Title", "This is a message");

MessageBox.Show("Title", "This is a message", MessageBoxKind.Info);

MessageBox.Show("Title", "This is a message", MessageBoxOptions);

      Where MessageBoxOptions could be an object defining Width, Height, Buttons, Animation, etc.

Now it's possible to define a template and call it from other components, but that's an unnecessary work to do, as this feature is essential in any programming environment that faces user interaction.

Thanks and best regards