Questions tagged [submenu]

A submenu is a menu, that is a list of options or commands, which is contained within another menu.

A submenu is a menu, that is a list of options or commands, which is contained within another menu.

Submenus are commonly found in desktop applications but also websites.

See also: Menu (computing) on Wikipedia

1356 questions
332
votes
7 answers

Bootstrap dropdown sub menu missing

Bootstrap 3 is still at RC, but I was just trying to implement it. I couldn't figure out how to put a sub menu class. Even there is no class in css and even the new docs don't say anything about it It was there in 2.x with class name as…
DevC
  • 6,005
  • 8
  • 34
  • 56
45
votes
8 answers

Android adding a submenu to a menuItem, where is addSubMenu()?

I want to add a submenu inside my OptionsMenu to a menuItem, programatically according to my parameters. I've checked "MenuItem" in android sdk and there is no addSubMenu() method!, although you can find "hasSubMenu()" and "getSubMenu". Was…
ruhalde
  • 3,321
  • 3
  • 20
  • 28
43
votes
3 answers

How do I generate a custom menu/sub-menu system using wp_get_nav_menu_items in WordPress?

I have an html structure that requires customization of the wp_nav_menu code. This is the html I need to generate:
29
votes
4 answers

Android action bar menu item with actionLayout not working properly

Hi I am developing an Android application. In my application I am using Sherlock action. I've defined few menu items in action-bar like in following manner
nilkash
  • 7,120
  • 30
  • 91
  • 165
26
votes
7 answers

How to add dividers between specific menu items?

Background I have a menu item in the action bar (toolbar actually) that when clicked, shows a list of items to choose from, similar to radio-buttons:
android developer
  • 106,412
  • 122
  • 641
  • 1,128
24
votes
3 answers

How to implement half-circle menu (sub item) with CSS and JavaScript on mobile web?

I want to use a half-circle menu when I surf the mobile web with my right hand. Can somebody teach me how to implement half-circle menu (sub item) with CSS and JavaScript on mobile web? I have tried it with CSS transform:rotate and border-radius,…
Alan Chen
  • 297
  • 2
  • 8
15
votes
1 answer

How to use vimperator to interact with sites that use sub-menus?

On sites that use a sub menus I find myself always having to use the mouse to hover/click the menu root to pull down the rest of the menu. How can I do this without having to use the mouse? An example site on the "Morrowind Overhaul" link. When I…
14
votes
3 answers

NSSharingService Sharing Submenu

How do I add the Share submenu in a Mac app? An example is Safari > File > Share. I poked at the Apple SharingServices sample code, but it does not include a working menu item. Right now I have a button that displays a picker of available sharing…
DenVog
  • 4,096
  • 3
  • 38
  • 66
11
votes
4 answers

bootstrap 3 navbar dropdown box color

I am using flat UI theme with bootstrap 3. The flat UI theme navbar is not working correctly and many are having similar issues with it that have posted on github. So I decided to just use the default BS3 navbar and write my own code (with the…
11
votes
1 answer

How to add a submenu entry to Eclipse Package Explorer context menu item using org.eclipse.ui.menus?

I am trying to add a submenu entry to an item from the context menu of the Eclipse Package Explorer. The menu entry is already defined via org.eclipse.ui.popupMenus in another plugin, not in the one that I am working at. (That plugin is added to the…
catalina
  • 253
  • 2
  • 8
10
votes
2 answers

Angular material menu opening on mouse hover

I'm using Angular Material menubar to show a menu and the sub menu under each menu item. I've added ng-click event to open the submenu. But the menu is still opening on mouse hover on the parent menu item. Not only this, as I have two sub menus, for…
Indranil Mondal
  • 2,617
  • 2
  • 23
  • 37
10
votes
7 answers

How to add new custom submenu under another plugins menu

There is plugin called Shopp in my WP admin page , this plugin has got top level menu "Shopp" . This is the top level menu: $menus['main'] = add_menu_page('Shopp', 'Shopp', SHOPP_USERLEVEL, 'shopp-orders', array(&$this,'orders')); And I've created…
Tom
  • 101
  • 1
  • 1
  • 5
9
votes
1 answer

How to add sub menu in mean.io?

I've been wandering around the internet to find a way to add submenu's to the mean.io application. SystemPackage.menus.add({ title: 'Log Out', link: 'Log Out', roles: ['authenticated'], menu: 'account' }); I've the following…
Brune
  • 1,060
  • 10
  • 20
9
votes
1 answer

How do I hide a sub-menu in QMenu

I have an application where I generate menu items, and I want to set the visibility of a particular sub-menu. I tried using setVisibility(False), but this did not work. setVisibility() works for menu items, but not for sub-menus in QMenus. Have a…
Rao
  • 2,504
  • 12
  • 46
  • 64
8
votes
1 answer

Making JPopupMenu's submenus heavyweight

http://java.sun.com/products/jfc/tsc/articles/mixing/index.html advices how to make JPopupMenus heavyweight. Just set the property: setLightWeightPopupEnabled(false); It works fine, but if I have submenus in the popup, implemented as JMenu items,…
Joonas Pulakka
  • 34,943
  • 25
  • 103
  • 165
1
2 3
90 91