syncfusion 20.2.0.44
blazor server project
i am using ContextMenu in datagrid and i am facing issue when opening the menu and trying to open the submenu. when trying to open submenu, when hovering mouse over the "Report language" to open it the contextmenu closes (without any errors)
here is the code used.
ContextMenuItems1.Add(new Syncfusion.Blazor.Grids.ContextMenuItemModel() { Text = "EDIT VISIT", Id = "EDIT-VISIT", Target = ".e-content" });
ContextMenuItems1.Add(new Syncfusion.Blazor.Grids.ContextMenuItemModel()
{
Text = "REPORT LANGUAGE",
Id = "language-notes",
Target = ".e-content",
Items = new List<MenuItem>()
{
new MenuItem{Text = "**ENGLISH-REPORT**", Id = "ENGLISH-REPORT" },
new MenuItem{Text = "**GREEK-REPORT**", Id = "GREEK-REPORT"}
}
});