Hi,
I've a menu like this
All works fine if I keep commented the second HtmlAttributes (used to set the tooltip through title), if I uncomment that line, the menu show the tooltip but, uses jquery default style (and not kendo theme) and lost item css class 'menuitem'
I've a menu like this
@(Html.Kendo().Menu()
.Name("grouplist")
.HtmlAttributes(new { style = "width: 140px;" })
.Items(items =>
{
foreach (ns.Models.GroupModel item in groups)
{
items.Add()
.Text(item.Name)
.HtmlAttributes(new { @class = "menuitem" })
//.HtmlAttributes(new { @title = "Items in this group : " + item.Count })
.Items(children =>
{
children.Add().Text("Add new item");
children.Add().Text("Edit group");
children.Add().Text("Delete group!");
});
}
})
.Orientation(MenuOrientation.Vertical))