This is a migrated thread and some comments may be shown as answers.

Kendo().Menu() and SubMenuItem style

1 Answer 469 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Dario Concilio
Top achievements
Rank 2
Dario Concilio asked on 07 Mar 2017, 01:55 PM

Hi to all,

I created a new project web Telerik application MVC with Razor, I added a submenu in _Layout.cshtml

<div id="responsive-panel" class="navbar-left">
    @(Html.Kendo().Menu()
                    .Name("Menu")
                    .Items(items =>
                    {
                        items.Add().Text("Home").Action("Index", "Home", new { area = "" });
                        items.Add().Text("About").Action("About", "Home", new { area = "" });
                        items.Add().Text("Contact").Action("Contact", "Home", new { area = "" });
                        items.Add().Text("Configurazioni").Items(subitems =>
                        {
                            subitems.Add().Text("Ruoli").Action("Index", "Roles", new { area = "" });
                        });
                    })
    )
</div>

 

But when a try to run, I see strange style for submenu, is it correct?

1 Answer, 1 is accepted

Sort by
0
Ivan Danchev
Telerik team
answered on 07 Mar 2017, 04:15 PM
Hello Dario,

Could you please specify which particular submenu style you find unusual?  If it is the "Ruoli" item's white background we use white background in several of our themes, for instance Bootstrap, Fiori, Material.

Regards,
Ivan Danchev
Telerik by Progress
Try our brand new, jQuery-free Angular 2 components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
Tags
Menu
Asked by
Dario Concilio
Top achievements
Rank 2
Answers by
Ivan Danchev
Telerik team
Share this question
or