Questions tagged [kendo-menu]

The Menu UI widget of Kendo UI.

The Menu UI widget of Kendo UI. Kendo UI is a JavaScript framework build on top of jQuery and provides a set of UI widgets that support HTML5 for mobile and web development.

A Menu widget could be configured with the properties:

  • animation: provides menu animations with effects
  • direction : provides a menu opening direction
  • orientation: root menu orientation

The menu items are added to the menu through jQuery selectors. It also accepts a target item as a JSON object.


Related tags

51 questions
3
votes
1 answer

KendoUI Menubar open on click

I have a KenoUI MenuBar. Code as per bellow: @(Html.Kendo().Menu() .Name("UserMenu") .Events() .Items(items => { items.Add().Text("Organisation Name"); items.Add().Text("User Fullname").Items(useritems => …
Shane van Wyk
  • 1,870
  • 1
  • 26
  • 62
2
votes
2 answers

How to show drop down of my navbar only on click?

I have a dynamic navbar that get url data from database; it works fine on computer but if I try to access dropdowns with my mobile, doesn't show anything. My code is like this: $(document).ready(function() { $.ajax({ …
2
votes
2 answers

Kendo menu wrong position items first time

I am getting problems with one of the kendo controls - Menu. The problems is that when I open the Sub Menu with C items it's container goes on wrong position. It happens to all elements, but only first time when they are expanded. Demo…
mihkov
  • 1,171
  • 13
  • 37
2
votes
1 answer

Kendo menu selects multiple items at a time, ASP.NET MVC

I have Kendo menu with actions: @(Html.Kendo().Menu().Name("menu") .Items(it => { it.Add().Text("Item1").Items(subit => { subit.Add().Text("subitem1).Action("Contracts", "Home"); …
Gyuzal
  • 1,581
  • 10
  • 52
  • 99
2
votes
1 answer

Kendo Context Menu - prevent close on mouse down

I'm binding a mouse click listener to serveral SVG elements and - on a click- trigger the open method of a kendo context menu. If the menu is already open (I listening to the activate/deactivate events to check if the menu is open), and the user…
Clemens
  • 51
  • 11
2
votes
3 answers

How to bind kendo-menu to remote datasource?

below is my code $("#lhsPanelBar").kendoMenu({ orientation: 'vertical', dataSource: { type: 'json', transport: { read: "http://localhost:3549/api/LHSMenu" } …
Abhishek Vyas
  • 599
  • 1
  • 9
  • 24
2
votes
3 answers

Kendo UI Menu Doesn't work in IE (Touch)

Kendo UI Menu doesn't work in IE on Tablets running Windows 8 (IE 10 & IE 11). The menu drop down doesn't work. The menu works in Google chrome on the same Windows tablet.
kalel16
  • 59
  • 2
2
votes
0 answers

Kendo UI Menu using customized SiteMapProvider

I am trying to customize XMLSiteMap for Kendo UI Menu to include more properties other than title, controller, action, area. But XMLSiteMap didn't provide any override method to implement custom properties.Can we add more properties to SiteMap file?…
Siva
  • 21
  • 3
2
votes
2 answers

How do I modify the kendo UI menu's default html?

Kendo UI's default menu is great but Bootstrap's menu is awesome. What must I do in order to keep the same Bootstrap menu's structure while calling the menus via kendo ui ? bootstrap menu structure:
1
vote
0 answers

Telerik Kendo UI Menu with Controller and Action

I am trying to implement a Kendo UI Menu bind from JSON data. For Now I am getting only links with Controller Value based on my JSON Data. For example i am getting this in the href href="/MemberManagement" MemberManagement is the name of…
Usman Rafiq
  • 137
  • 1
  • 11
1
vote
2 answers

Href link is not rendering properly

I am using Kendo Menu bar to call javascript function on the click of Menu Item. But url of Kendo Menu is not rendering properly. Below is the code function kendoMenu() { $('#menu').kendoMenu({ //orientation: "vertical", …
Rupak
  • 61
  • 10
1
vote
0 answers

Kendo Menu Direction

Is it possible to set Kendo menu direction to auto so that it can open in any direction according to available space? My issue is, I have a Kendo menu at the end of the page, when user tries to open kendo menu it always opens in down position, and…
Vijay Sutaria
  • 132
  • 1
  • 11
1
vote
0 answers

kendo menu Align vertically center to div

I am trying to center align the text of kendo menu as per the div it contains. This is the navbar in an aurelia app, and its always in top. I want to center align it. If I do a top-margin, then the hover get disturbed. Here is what I have now, the…
genericuser
  • 1,430
  • 4
  • 22
  • 40
1
vote
0 answers

SecurityTrimming does not hide unauthroized menus

I have a Kendo menu that is built dynamically. @(Html.Kendo().Menu() .Name("menu") .HtmlAttributes(new { @class = "menu-top", styles = "max-height:55px" }) .SecurityTrimming(s => s.HideParent(true)) .Items(menu => …
sosha
  • 207
  • 3
  • 11
1
vote
2 answers

Kendo Menu selection issue

I've a kendo menu to dynamically enable or disable the kendo grid columns. When I select the options from the KendoMenu, the selection is firing twice. I've created the demo version below. demo $("#menu").kendoMenu({ dataSource: [{ text:…
Premkumar Jayaseelan
  • 681
  • 2
  • 10
  • 30
1
2 3 4