The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
showing context menu on modal dlgs spawned from a context menu handler doesn''t work.
i.e if you handle a menu item and show a form with another context menu on it, when the user rclicks nothing happens....
is there anyway other than async handling the menu item to fix this....
ADAdministrator Syncfusion Team June 29, 2004 12:09 PM UTC
Hi
Calling:
this.popupMenu1.SynchronousPopup = false;
should take care of this issue.
The PopupMenu.Show method will by default return after the context menu is closed. Specifying SynchronousPopup to false will then make it return immediately and hence you can now see the context menu for the open Modal dialog.
Regards
Arun