Unplanned
Last Updated: 13 Sep 2022 10:01 by Daniel
Daniel
Created on: 13 Sep 2022 09:26
Type: Feature Request
2
KendoMenuItem's options in tag helper syntax are always empty

Depending on the implementation of Kendo Menu via ASP.NET Core it returns different HTML. In the case where we use Html.Kendo it is generated in a way that works well with all built-in methods in the translators.

However, if we use tag helper syntax instead, the structure of the Kendo menu element is different and the code below times out.

KendoMenu menu = Pages.Home.MenuNavigation;

KendoMenuItem menuItemSettings = menu.AllMenus.SingleOrDefault(x => x.MenuItemTitle == "title");
menuItemSettings.MouseHover();
Wait.For(x => menuItemSettings.AllOptions.Count > 0, menuItemSettings, 5000); // running into a timeout, because menuItemSettings.AllOptions always 0

It would be helpful to extend the functionality of the Kendo translators to include both types of DOM structure. We are using Kendo UI version 2022.2.510 and Test Studio 2022.2.804.

1 comment
Daniel
Posted on: 13 Sep 2022 10:01

For the whole discussion and more details I refer to the forum thread here:

https://www.telerik.com/forums/kendomenuitem-s-options-are-always-empty