Tagged Questions
The submenu tag has no wiki summary.
5
votes
2answers
340 views
Submenu not showing - overflow hidden?
my problem is that I got 3 submenus in the third nav named "Productos", but they are not showing.
I think maybe the error got something with the jQuery plugin kwicks... making it overflow:hidden;
...
4
votes
2answers
2k views
Drupal 6: Printing Unadulterated Primary Links and all children
How in the WORLD is possible? I swear, I've read the equivalent of 3 encyclopedias to no avail. I've tried solutions within regions, page.tpl.php and blocks. None of them give me what I need... and I ...
3
votes
2answers
1k views
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, ...
2
votes
2answers
59 views
Creating a submenu
I want to make a sub menu like this Mozilla Firefox sub menu:
This is what it is like now (in my program):
But I want it to look like Firefox were it has an additional menu when you have your ...
2
votes
1answer
106 views
How can I keep my sub-menu open in jQuery hover menu?
I just started coding in jQuery last week and need some help figuring out how to make a menu work properly. I have 3 tabs each with their own menu. When a page is displayed a menu and a sub menu is ...
2
votes
1answer
110 views
Centering horizontal submenu below parent with css
Best shown with a Fiddle: http://jsfiddle.net/Jnttm/
How can I get the sub-menu to center underneath the parent menu-item? A lot of the centering tricks I've found don't apply because the child ...
2
votes
1answer
159 views
Delaying opening of sub-menus in a menustrip
Our environment: Visual Studio 2010, c#, .net 4 client profile.
We have a Winforms application that contains a menustrip in its main form. The items of the menustrip contain both an image (64x64) and ...
2
votes
1answer
374 views
MouseOver remove class MouseOut restore class
so i am trying to find a little bit of script to remove the class on the active menu item when i hover over other menu items. But restore it when i move away from the nav. The tricky part is making ...
2
votes
0answers
134 views
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 ...
2
votes
1answer
435 views
How to slideUp (hide) children divs in JQuery?
Ok, let's say I have a navigation system constructed in nested divs and I want to show sub-menu divs (and sub-sub-menu divs) when I do a mouseover on the menu div AND hide sub-menu divs (and ...
2
votes
1answer
544 views
Create submenu with Zend Navigation
Is it possible to create a submenu in Zend Navigation?
At this time i've got this in my application.ini:
resources.navigation.pages.indexHome.label = "Home"
...
2
votes
2answers
2k views
BlackBerry - How to create sub menu?
i want to create sub menu for a BB application
when i click on menu item it shows
Option 1
Option 2
Option 3
When i click on option 3 it should display
1
2
3
as sub menu items..
using j2me + ...
1
vote
4answers
44 views
Different IDs For each Wordpress Submenu?
Does anyone know of a way to add a unique ID to each submenu wordpress Generates?
As of now, WP generates:
<ul class="sub-menu"></ul>
Ideally, I'd like it to generate
<ul ...
1
vote
1answer
61 views
jquery hover on submenu with sliding efekt
I am looking for solutions on my problem. I would like to make an animation (slide up, slide down) on hover but I cant to resolve it. If you take a look on this page it is a image router. This is ...
1
vote
2answers
55 views
Qt: huge scrollable sub-menu loses items
Updated to add:
I have fixed this, after a fashion. First, I tried calling MySubmenu -> clear() and rebuilding the sub-menu whenever the parent menu was clicked. Surprisingly, this didn't work. So ...
1
vote
0answers
80 views
Multi-level expanding jquery menu to expand/show a submenu if the current page is within that submenu item?
I'm wanting this menu: http://jsfiddle.net/tz37m/1/ to work a little better across the site so that if someone is on a page within a submenu, that submenu is open when they are on that page. I also ...
1
vote
0answers
186 views
IE9 not showing ul li ul submenu all other browsers IE before do
i did not find exactly this problem in the other questions
only in IE9 my submenu and all css on ul li ul does not show .
It works correctly in IE6 7 8, firefox , safari, chrome, opera,..
so i ...
1
vote
1answer
76 views
Java Submenu ActionListener Does Not Work Properly
I added right-click submenu to my program with the following code,
JPopupMenu pmenu = new JPopupMenu("Menu");
JMenu sectionsMenu = new JMenu("Tickness");
JMenuItem menuItem1 ...
1
vote
3answers
80 views
Maintain css background image on SPAN when in Submenu
Please see this PasteBin for my current code: http://pastebin.com/3RtjYN00
Currently when I hover over the main image, the image background position changes & a blue submenu appears - great!
...
1
vote
0answers
198 views
Activity has leaked window on orientation change with a SubMenu opened
I have a problem with my Android app. The activity has an options menu.
The menu looks like this:
<menu
xmlns:android="http://schemas.android.com/apk/res/android">
<item
...
1
vote
1answer
216 views
Keep Sub-Menu Open when Viewing Child Pages in Wordpress?
I have a small jQuery menu setup on my site Destiny Islands in the top right corner. When you click on a game it provides a smooth scrolling effect to display the sub pages.
I'm trying to find out ...
1
vote
2answers
78 views
Generating the sub-categories for all categories
If I have a piece of code like this:
$get_categories = mysql_query("SELECT * FROM categories");
$categories = mysql_fetch_assoc($get_categories);
The category table contains all the different ...
1
vote
1answer
114 views
android how to put sub-menu within submenu
I want to add a submenu to an existing submenu with this xml:
<item android:id="@+id/chooseCountry" android:title="Choose Country">
<menu>
<item android:id="@+id/india" ...
1
vote
1answer
161 views
jquery ajax and submenu
Hello everybody first time i post here, excuse my english for mistakes!
well i am quite new in jquery and java but i learn day after day and i found a webpage very nice
...
1
vote
2answers
121 views
Heirarchical Sub-Menu - PHP
====================================================================
| menu id | parent_id | menu | Level |
...
1
vote
1answer
73 views
Non-dialog sub menus?
I've seen several instances of a menu with a "More ..." button that appears to open something like a list on a sliding drawer instead of the standard submenu popup dialog. Is this actually being done ...
1
vote
1answer
181 views
How can I disable the shadow dropping behind a sub-menu in GWT MenuBar?
I created a MenuBar with collapsing sub-menus using Googles GWT like in this example: GWT Showcase MenuBar
Hovering over a MenuItem opens a sub-menu if defined. The sub-menu drops a non-css3 shadow, ...
1
vote
1answer
476 views
Jquery submenu, hover in/out animation problem
I'm making a menu in jquery. You can see it at http://mywash.dk/testtest/index.html
The submenu that is shown from the start (below 'Hvordan') is the active menu so it should always be shown (unless ...
1
vote
3answers
348 views
JPopupMenu bug/glitch(?) when showing submenu
I have this strange bug with my popup menu. It happens rarely and seemingly randomly. The problem is when I have a submenu in my JPopupMenu - when I select the submenu, main menu disappears and the ...
1
vote
4answers
2k views
Android Open Menu from a button
Is there a way for a button to call a submenu?
I currently have a menu where if they select one of the options it opens a submenu, however I want to be able to start the submenu from the Button ...
1
vote
2answers
454 views
android onOptionsMenuClosed not being called for submenu
I want to be able to automatically unpause my app when the user exits from the options menu. (unless, of course, they have selected pause...)
Handling it onOptionsMenuClosed works fine for the top ...
1
vote
1answer
4k views
vertical navigation that shows hidden submenu on click using JQuery
I am trying to make a menu that works like the one on this flash site:
http://elevensix.de/
When I click "portfolio", only then to the subnavigation links reveal themselves. Right now I have only ...
1
vote
1answer
780 views
Submenu with pure html and css disappears
I am trying to make a dropdown menu with pure html and css, but the submenus disappear when the cursor leaves the parent li, thus preventing me from clicking on the submenu. Here is a link to the test ...
1
vote
4answers
2k views
CSS How to hide current child menu items when hovering over parent's sibling items without javascript
I'm trying to create a two-level horizontal navigation menu (or menubar) that displays the child submenu items when you hover over the parent menu item. If one of the child items is selected, the ...
1
vote
3answers
3k views
CSS - how to display submenu options horizontally while maintaining spacing of horizontal main menu options
I have a menu working fairly well but can't figure out how to make the 2nd level submenu display horizontally instead of vertically. The whole menu needs to be only 2 rows, so hovering over the top ...
1
vote
1answer
105 views
Css sprite doesn't stick to only the mainnav?
See http://bldd.nl/prototypes/megamenu/test23.php
I am stuck with this, if you rollover the submenu navigation you see the corresponding mainmenu rollover sprite?
How can i fix this and optimize the ...
1
vote
2answers
2k views
Drupal module nested menu items
In implementing hook_menu for a module, I am trying to put some items into a submenu.
So far I have something like this
$items['MyModule'] = array(
//...
'page callback' => ...
1
vote
1answer
795 views
How to Remove Visual C++ “Expand Menu” Arrow?
When creating menus with submenus in Visual C++, I find that submenus begin as arrows that I must click to expand to see their contents. Is there a way (programmatically) to have the submenus pop-out ...
1
vote
2answers
3k views
How to add submenu to a CMenu in MFC?
I have an MFC app that uses CMenu for the main menu bar.
I haven't been able to create submenus successfully.
I can have the first level of File, Edit, View, etc and their sub menus, but I can't ...
0
votes
0answers
12 views
JavaFx submenu not following web page
I have made JavaFx menu and its submenus; they work fine in a stand-alone mode.
But if I embed them in the browser, its submenu is always stays in the first place where it is opened even after I ...
0
votes
1answer
26 views
Joomla/Virtuemart: Sub-Menu items not showing on vertical menu
I have mod_mainmenu module on the left side of my page. I have a menu that I've created out of various URL's to different categories in Virtuemart. I did not use the Virtuemart catergories module ...
0
votes
0answers
20 views
how to keep subpages consistent under parent page when clicked on subpages in rails
on my site I have pages and subpages, when I click on one of the subpages, whole subpage disappears. in a normal menu system they should stay unless I navigate to different parent item. I need a ...
0
votes
2answers
42 views
i need to create a menu, which has multiple submenus
Say i have a bunch of newspapers: The Times, The Independent, The Telegraph and BBC.
In a dropdown menu, I have: "The Times", "The Independent", "The Telegraph", "BBC", "BBC World news", and "BBC UK ...
0
votes
0answers
18 views
Category posts as submenu items
Been searching for a while on this subject without any success. All I can find are solutions which involve using the Walker property of the wp_nav_menu, which I don't think is the right approach. I ...
0
votes
1answer
36 views
Add submenu in Main Menu bar
I want to add submenu in Main Menu bar in my MFC app
It has a design as follows,
Main Menu
Menu Item1
Menu Item2
SubMenuItem1
SubMenuItem2
SubMenuItem3
Menu Item3
...
0
votes
1answer
41 views
Make a extra function in submenu script
I have a submenu script plugin. Now I want to add an extra function. But I have a few problems. When the submenu is being opened, I want do this:
$("body").append('<div ...
0
votes
1answer
65 views
Make a submenu with jQuery and html5
I want to make a submenu with jQuery and javascript.
I have this html structure:
<nav class="container">
<ul>
<li><a href="#" title="Werken in de zorg">Werken in ...
0
votes
1answer
50 views
How can I toggle a div and simulateously hide previously toggled divs?
When I click on any menu item the sub menu for that item shows. Which is great. Then when I click on any other menu item the first box/sub menu disappears and a new sub menu appears, which is also ...
0
votes
3answers
47 views
Refactor javascript function
:) i have created some javascript, it works well, my javascript knowledge limit me to create some compact and light script.
this is some sub menu javascript of aspx framework, here it it the script :
...
0
votes
1answer
45 views
how can I remove the subnavigation overlap?
I am trying to create a sub navigation. Right now I have two subnav. When i hover over the first item on the main menu the corresponding submenu appears. But when I hover over the second item the ...