active questions tagged menu - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T06:35:06Zhttp://stackoverflow.com/feeds/tag/menuhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1934926/how-to-create-a-drop-down-menu-java-app-on-the-desktop-to-hold-desktop-icons-jav0how to create a drop down menu java app on the desktop to hold desktop icons (java)Andrew2009-12-20T05:17:35Z2009-12-20T05:29:14Z
<p>Hi all,</p>
<p>I'm trying to create a java desktop application that holds desktop icons. The app will be a menu/panel that is invisible until you hover your cursor near the top of the screen, at which point the menu full of desktop icons will drop down. To add new icons to the menu one must simply drag icons from the desktop into the menu and they should snap to grid. As I am an intermediate level programmer but I havn't ever done a GUI app before in any language, I was wondering if someone could help me out, both with how to approach the problem and on the packages and methods I should be using. Also, I'm thinking of doing this with NetBeans unless you have any other suggestions.</p>
<p>Thanks,
Andrew</p>
http://stackoverflow.com/questions/1808866/gambas-how-can-i-create-radio-mutually-exclusive-menu0Gambas - How can I create radio (mutually exclusive) menu?David2009-11-27T13:44:54Z2009-12-18T16:56:25Z
<p>I'm using <a href="http://gambas.sourceforge.net" rel="nofollow">Gambas</a> 2.13 on Ubuntu 9.10. I have created a QT graphical application and I'm trying to create radio (mutually exclusive) menu items, with a radio icon instead of a check mark when selected. I can't find any property in the Menu documentation that does that. Can you help?</p>
http://stackoverflow.com/questions/1900293/how-can-i-create-a-drop-down-menu-in-a-java-swing-toolbar3How can I create a "Drop-Down" menu in a Java Swing toolbar?Steve McLeod2009-12-14T11:13:31Z2009-12-17T17:18:58Z
<p>I've created a drop-down menu on my Swing JToolBar. But it doesn't create behave the way I want. I'm aiming for it to work like Firefox's "Smart Bookmarks" button.</p>
<p>It disappears when the user selects a menu item: CORRECT!</p>
<p>It disappears when the user presses ESC: CORRECT!</p>
<p>It disappears when the user clicks somewhere in the main frame outside of the menu: CORRECT!</p>
<p>But it doesn't disappear when the user clicks a second time on the button that shows the drop-down menu: INCORRECT... :-(</p>
<p>My question is how can I add this behaviour, that it does disappear when the clicks on the button that shows the menu a second time.</p>
<p>Here's my current code, from Java 6 on the Mac:</p>
<pre><code>import javax.swing.*;
import javax.swing.event.PopupMenuEvent;
import javax.swing.event.PopupMenuListener;
import java.awt.*;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
public class ScratchSpace {
public static void main(String[] arguments) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
JFrame frame = new JFrame("Toolbar with Popup Menu demo");
final JToolBar toolBar = new JToolBar();
toolBar.add(createMoreButton());
final JPanel panel = new JPanel(new BorderLayout());
panel.add(toolBar, BorderLayout.NORTH);
panel.setPreferredSize(new Dimension(600, 400));
frame.getContentPane().add(panel);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
private static AbstractButton createMoreButton() {
final JToggleButton moreButton = new JToggleButton("More...");
moreButton.addItemListener(new ItemListener() {
public void itemStateChanged(ItemEvent e) {
if (e.getStateChange() == ItemEvent.SELECTED) {
createAndShowMenu((JComponent) e.getSource(), moreButton);
}
}
});
moreButton.setFocusable(false);
moreButton.setHorizontalTextPosition(SwingConstants.LEADING);
return moreButton;
}
private static void createAndShowMenu(final JComponent component, final AbstractButton moreButton) {
JPopupMenu menu = new JPopupMenu();
menu.add(new JMenuItem("Black"));
menu.add(new JMenuItem("Red"));
menu.addPopupMenuListener(new PopupMenuListener() {
public void popupMenuWillBecomeVisible(PopupMenuEvent e) {
}
public void popupMenuWillBecomeInvisible(PopupMenuEvent e) {
moreButton.setSelected(false);
}
public void popupMenuCanceled(PopupMenuEvent e) {
moreButton.setSelected(false);
}
});
menu.show(component, 0, component.getHeight());
}
}
</code></pre>
http://stackoverflow.com/questions/1918823/way-to-do-radio-buttons-in-qt-4-4-3-menus0Way to do radio buttons in Qt 4.4.3 menusWilliamKF2009-12-17T00:52:18Z2009-12-17T03:39:56Z
<p>On Linux would like to have a set of menu items which are mutually exclusive and have the currently selected one be designated by a radio button instead of a checkbox.</p>
<p>Is there a way to do this in Qt v4.4.3 easily?</p>
http://stackoverflow.com/questions/212926/ole-client-in-sdi-want-to-add-a-toolbar0OLE Client in SDI. Want to add a toolbarSteve2008-10-17T16:49:53Z2009-12-16T16:00:11Z
<p>I have an SDI that I'm loading Excel into using OLE. I want to add a toolbar to this that I can use to have a very prominent and evident "import" button (and a few others). The toolbars I add through MFC are all hidden or otherwise removed from the interface when Excel becomes active. Is there a way to keep a toolbar up and on the interface when the Excel Ole item becomes active?</p>
<p>I've tried calling the FloatControlBar after the Excel OLE item is initialized, but it had no effect. I thought of twisting the menu (which does remain and behave normally) into a toolbar, but it would need to be docked on the left side (requirement) and have large, visible graphic depiction for the command ... and I haven't found a way to do that. CMenu class allows graphical menu items, but I haven't spotted a way to do much with the menu command itself (other than get its commandid in the message table).</p>
http://stackoverflow.com/questions/1914792/css-menu-issue-in-safari-and-chrome-submenu-disappears-on-hover-unless-youre-re0CSS menu issue in Safari and Chrome. Submenu disappears on hover unless you're really fast!Anni2009-12-16T13:56:31Z2009-12-16T15:16:55Z
<p>When you hover over the top level links, the submenu appears as it should, but when you move the cursor down over the sub menu, it disappears sometime immediately and sometimes after the 3rd or 4th submenu link depending on how precise or fast you are!
It works fine in firefox, ie7 and ie8 and validates for css and xhtml transitional.
Please help I just can't see the problem. I did try adding margin-top: -1px to the sub li and/or to the sub ul to no avail.</p>
<p>Any ideas at all gratefully received. Oh and I should say that I am using windows vista, safari 4.0.4 and that a site user flagged up the problem and he was using safari 3 and windows xp.</p>
<p>Thanks</p>
<p>Anni</p>
<p>html code:</p>
<pre><code><ul id="menu">
<li id="menu1" ><a href="http://www.theservicebusiness.com/" title="Home">Home</a></li>
<li id="menu15" class="active"><a href="/what-we-do.html" title="What we do">What we do</a><ul class="subm"><li class=" subli">
<a href="/what-is-lean-service.html" title="What is Lean Service">What is Lean Service</a>
</li>
<li class=" subli">
<a href="/performance-metrics.html" title="Performance Metrics">Performance Metrics</a>
</li>
<li class=" subli">
<a href="/service-network-lean.html" title="Designing the service network around Lean concepts">Service Network</a>
</li>
<li class=" subli">
<a href="/global-process.html" title="Global process">Global Process</a>
</li>
<li class=" subli">
<a href="/organisation.html" title="Organisation">Organisation</a>
</li>
<li class="last subli">
<a class="last" href="/technology-and-information.html" title="Technology and Information">Technology</a>
</li>
</ul></li>
<li id="menu72" ><a href="/how-we-do-it.html" title="How we do it">How we do it</a><ul class="subm"><li class=" subli">
<a href="/discovery.html" title="Discovery">Discovery</a>
</li>
<li class=" subli">
<a href="/gain-share.html" title="Gain Share">Gain Share</a>
</li>
<li class="last subli">
<a class="last" href="/smart-sourcing.html" title="Smart Sourcing">Smart Sourcing</a>
</li>
</ul></li>
<li id="menu54" ><a href="/clients.html" title="Clients">Clients</a><ul class="subm"><li class=" subli">
<a href="/testimonials.html" title="Testimonials">Testimonials</a>
</li>
<li class=" subli">
<a href="/defence.html" title="Defence industry case studies">Defence</a>
</li>
<li class=" subli">
<a href="/hi-tech.html" title="Hi-Tech">Hi-Tech</a>
</li>
<li class=" subli">
<a href="/Industrial.html" title="Industrial">Industrial</a>
</li>
<li class=" subli">
<a href="/telecom.html" title="Telecom">Telecom</a>
</li>
<li class=" subli">
<a href="/computing.html" title="Computing">Computing</a>
</li>
<li class=" subli">
<a href="/medical.html" title="Medical Sector">Medical</a>
</li>
<li class="last subli">
<a class="last" href="/rail.html" title="Rail">Rail</a>
</li>
</ul></li>
<li id="menu33" ><a href="/about-us.html" title="About us">About Us</a><ul class="subm"><li class=" subli">
<a href="/director-bios.html" title="Director Bios">Director Bios</a>
</li>
<li class=" subli">
<a href="/ethical-and-social-responsibility.html" title="Ethical and social responsibility">Social Responsibility</a>
</li>
<li class="last subli">
<a class="last" href="/jobs.html" title="Job opportunities">Job Opportunities</a>
</li>
</ul></li>
<li id="menu73" ><a href="/global-locations.html" title="Global Locations">Global Locations</a></li>
<li id="menu6" ><a href="/contact-us.html" title="Contact Us">Contact us</a></li>
<li id="menu2" class="last"><a href="/blog.html" title="Blog">Blog</a></li>
</ul>
</code></pre>
<p>and the css:</p>
<pre><code>#head, #headint, #menu ul {z-index:100}
#head h1, #headint h1 {z-index:0}
#menu1 {z-index:99}
#menu15 {z-index:98}
#menu32 {z-index:97}
#menu33 {z-index:96}
#menu48 {z-index:95}
#menu6 {z-index:94}
#menu2 {z-index:93}
#menu49 {z-index:92}
#menu, #menu ul {padding: 0;margin: 0 auto; list-style: none; width: 940px; }
#menu a {display: block;border:0; }
#menu li { float: left;width: 100px; background:transparent ; margin-bottom:0; height: 50px;}
#menu li a {text-align: center; padding-top: 37px; font-size: 13px; font-weight: bold;color: #C3C3C3; background: url(../images/bg_nav-00-divider.png) no-repeat ; background-position: 0 bottom}
#menu li a:hover { color:#99ccff}
li#menu72 ul.subm, li#menu15 ul.subm, li#menu54 ul.subm, li#menu33 ul.subm { position:relative; width: 196px; left: -999em; background:transparent url('../images/bg_subnav.png') no-repeat scroll 0 bottom;text-align:left }
li#menu72 ul.subm li, li#menu15 ul.subm li, li#menu54 ul.subm li, li#menu33 ul.subm li { float:none; background:transparent; display:block; width:183px;text-align:left; height: 31px; }
li#menu72 ul.subm li a, li#menu15 ul.subm li a, li#menu54 ul.subm li a, li#menu33 ul.subm li a { padding:15px 0 0 35px; background: transparent url('../images/menbul.png') no-repeat 5px bottom; text-align:left}
li#menu72 ul.subm li.last a.last, li#menu15 ul.subm li.last a.last, li#menu54 ul.subm li.last a.last, li#menu33 ul.subm li.last a.last { padding:15px 0 25px 35px !important; background: transparent url('../images/menbul.png') no-repeat 5px 10px; }
li#menu72 ul.subm li.last, li#menu15 ul.subm li.last, li#menu54 ul.subm li.last, li#menu33 ul.subm li.last { height:56px}
#menu li:hover ul, #menu li.sfhover ul {left: auto ;}
li#menu1{ width:253px;}
li#menu1 a{ background: url('../images/logo.png') no-repeat 0px 0px; left: 0px; width: 253px; top: 5px; height: 50px;overflow: hidden; text-indent: -9999em; outline: none}
#menu:hover li {background-position: 0 0;}
li#menu49 a { color:#99ccff; font-weight:bold;font-size:13px}
li#menu49 a:hover { color:#C3C3C3; }
li#menu54{ width:90px;}
li#menu33{ width:90px;}
li#menu6{ width:90px;}
li#menu2{ width:56px;}
li#menu73{ width:130px;}
</code></pre>
http://stackoverflow.com/questions/1818632/open-same-page-through-multiple-menu-item-in-asp-net-using-sitemap0Open same page through multiple Menu Item in asp.net using sitemapDot Net Developer2009-11-30T09:01:37Z2009-12-14T22:18:47Z
<p>I am using SiteMap and Menu in asp.net to create menus on masterpage. i want to open a same page lets say "Under Construction" from multiple menus. but its giving me error that one menu can refer to one page only. please give me solution to implement this.</p>
http://stackoverflow.com/questions/1308596/flex-3-how-can-i-change-a-popupbutton-into-a-regular-button-when-theres-only-on0Flex 3: How can I change a PopupButton into a regular Button when there's only one menu item available?DyreSchlock2009-08-20T20:22:48Z2009-12-14T00:00:01Z
<p>Hi there.</p>
<p>I have a PopUpButton that only contains 2 actions. Both actions are complete opposites of each other and switches a boolean property on an object from true to false or false to true. To avoid redundancy, I've only displaying one action at a time. So, if the property is true, the action to change it to true is not shown. </p>
<p>If my PopUp menu has a single option, I would like to remove the menu from being shown and basically revert the PopUpButton to act and look like a regular button. So far, I haven't really found a good way to do that in ActionScript without adding, removing or modifying styles for the button.</p>
<p>Is there a nice way to simply tell the button to hide the PopUp toggle?</p>
<p><strong>PS</strong>: In my specific example, YES it might be easier if I just used a toggle button. However, I want to reuse this button when dealing with an Array of objects. If I have more than one, the property could be true and false at the same time. In that case, I want to show the menu so they can choose what option to set all the object's properties to.</p>
http://stackoverflow.com/questions/1897382/vs2008-web-service-project-missing-data-menu-and-data-sources0VS2008 Web Service Project missing Data Menu and Data Sourcesaabluedragon2009-12-13T19:06:45Z2009-12-13T21:03:42Z
<p>VS2008 Web Service Project missing Data Menu and Data Sources:
Simply invisible, Can't find it and just cant add a connection to my database using that wizard. why is it missing?</p>
http://stackoverflow.com/questions/1896139/windows-explorer-context-menu-application-with-multiple-arguments0Windows Explorer Context Menu Application with Multiple ArgumentsGrant2009-12-13T10:47:25Z2009-12-13T15:36:38Z
<p>Hi, i have read heaps of articles about how to add custom right click context menu's to windows explorer but all of them only work if you have only 1 single file highlighted. The app i am writing is a utility app and i would ideally like it to work on %n number of files.</p>
<p>Can this be done?</p>
http://stackoverflow.com/questions/1894395/in-qt-how-to-show-keyboard-shortcuts-in-menu-but-disable-them1In Qt, how to show keyboard shortcuts in menu but disable them?dF2009-12-12T19:07:20Z2009-12-12T20:06:54Z
<p>I'm adding a bunch of <code>QAction</code>s to my main window's menus. These actions can also be triggered by the keyboard, and I want the shortcut to be visible in the menu, as usual, e.g. </p>
<pre><code>-----------------
|Copy Ctrl+C|
-----------------
</code></pre>
<p>I can do this using <code>QAction.setShortcut()</code>. However, I <strong>don't</strong> want these <code>QAction</code>s to be triggered by the shortcuts; I'm handling all keyboard input separately elsewhere. </p>
<p>Is this possible? Can I disable the shortcut in the QAction but still have the shortcut text (in this example "Ctrl+C") in my menus?</p>
<p><strong>EDIT</strong>: The way I ended up doing it is connecting to the menu's <code>aboutToShow()</code> and <code>aboutToHide()</code> events, and enabling/disabling the shortcuts so they are only active when the menu is shown. But I'd appreciate a cleaner solution...</p>
http://stackoverflow.com/questions/1890198/javascript-library-plugin-to-display-button-dropdown-menu-with-checkbox0javascript library/plugin to display button/dropdown menu with checkbox?Vadim B.2009-12-11T19:04:08Z2009-12-11T22:36:01Z
<p>I'm looking for a library that implements the following widget:</p>
<p>Dropdown (similar-ish to <code><select></code>) where you pick 1 value, <code>onchange</code> fires but the visible "value" is really the label, like a prompt. So it's more like a button when clicked shows a list of values, but otherwise acts like the HTML SELECT. In addition, the width of the widget, when not expanded, should be the width of the label (like "Select Foo: ") not the width of the widest element. And when you click the dropdown again, the selected value is either highlighted or has a check mark next to it.</p>
<p>This is the closest that I've found - <a href="http://dropdown-check-list.googlecode.com/svn/trunk/src/demo.html" rel="nofollow">Drop Down Checklist</a> - but this library places the value into the select box. I'd like the label to stay as the prompt. And also the <a href="http://lipidity.com/fancy-form/" rel="nofollow">Fancy Form</a> has the right kind of look to the selected checkbox or radio button that I'm looking for.</p>
<p>Can you recall a widget or library that has this implemented? Prefer if it was based on jQuery or stand-alone completely.</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1889490/how-do-you-alter-the-pageload-for-dotnetnuke0How do you alter the 'page_load' for DotNetNukeIdealflip2009-12-11T17:14:47Z2009-12-11T19:52:35Z
<p>For the main menu, I want the first four links to be blue, and specifically the last four links to be yellow. There will only be eight menu items.</p>
<p>I was thinking of hard coding the yellow links into the menu div, and that way when the page loads the first four menu items (default colour blue) they will be blue, and then my hard-coded links of yellow would load up.</p>
<p>My question is, where can I add the "yellow" code? Where can I hard code my yellow menu items? Or is there a different, better, approach to this?</p>
http://stackoverflow.com/questions/1890098/navigation-menu-wrapping-to-next-line-only-on-macbook-laptop0navigation menu wrapping to next line, only on macbook laptopHristo 2009-12-11T18:46:28Z2009-12-11T18:46:28Z
<p>I have created a navigation menu and it works perfectly, in all browsers, on my windows box. But when I decided to test it on my MacBook pro laptop, the last item of the menu falls down to the next line, in all browsers. </p>
<p>I'm not really sure why this is happening. The test site is <a href="http://wwwtest.orpr.uiuc.edu/" rel="nofollow">http://wwwtest.orpr.uiuc.edu/</a></p>
<p>Here's my CSS:</p>
<pre><code>#mainNav{
clear:both;
background-image: url(../imagesbg_menu.jpg);
width:950px;
height:43px;
color:#fff;
margin-top:-25px;
}
#ainNav ul{
list-style: none;
padding: 0;
margin: 0;
}
#mainNav ul li{
line-height:43px;
float:left;
background-image: url(../images/bg_menu.jpg);
font-weight:normal;
text-align:center;
cursor:default;
padding:0px 14px;
}
</code></pre>
<p>Any help is greatly appreciated.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/560347/how-to-apply-custom-action-in-ecb-only-for-document-item1how to apply custom action in ECB only for document itemAnoop2009-02-18T09:14:07Z2009-12-11T18:09:54Z
<p>I have added a menu item in edit control block(ECB) in document library(using following msdn article <a href="http://msdn.microsoft.com/en-us/library/ms473643.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms473643.aspx</a>)</p>
<p>Now i found that the custom action(menu Item) in ECB is displayed for both document item and document folder. So how to apply custom action only for document item?</p>
http://stackoverflow.com/questions/1859670/how-to-pull-grandchildren-from-database1How to pull grandchildren from databaseshin2009-12-07T12:21:24Z2009-12-11T12:46:12Z
<p>I want to pull out menu items from MySQL.</p>
<pre><code>Main menu id=1, parentid=0
-Contact us id=2, parentid=1
-Music id=3, parentid=1
--Rock id=8, parentid=3
--Classic id=9, parentid=3
-Car id=4, parentid=1
--Toyota id=5, parentid=4,
--Ford id=6, parentid=4,
--Honda id=7, parentid=4
Other menu id=10, parentid=0
-Othermain id=11, parentid=10
--submenu id=12, parentid=11
etc.
</code></pre>
<p>I can pullout data from id=1 to 4 and display by "...where parentid=1" etc.
However this pulls out only the top level.</p>
<p>But I want to pullout all the data including submenu for each menu(main menu) as well.</p>
<p>Could anyone tell me how to write a query in MySQL for this please?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1882451/jquery-drop-up-menu0jQuery - "Drop-Up" Menuruigoncalves2009-12-10T17:07:21Z2009-12-10T17:38:43Z
<p>Hi there!</p>
<p>Anyone knows a jQuery menu plugin that allows that the render of menu is drop-up instead of drop-down?</p>
<p>Thanks in advance for the help,
Best regards!</p>
http://stackoverflow.com/questions/1881235/placing-a-window-near-the-system-tray0Placing a window near the system trayunknown (yahoo)2009-12-10T14:11:30Z2009-12-10T14:11:30Z
<p>I am writing a program that needs to set a window just above/below the traybar for gtk. I have tried using the 2 approaches that failed. One was using the gtk_status_icon_position_menu function and placing the window in the point where the user clicks (in the tray bar). The problem is that these solutions work in gnome(Linux) but not in Windows. In Linux they work because the window manager doesn't seem to allow placement of windows in the tray panel, honoring the closest possible. In Windows this doesn't happen and the window can go "out" of the screen which understandably is not desired.</p>
<p>With this said i went out for a work around. My idea was to set the window in the location of mouse click and get the x and y coordinates of a normal window placement and with it's size check if it would be within the screen boundaries. If it was not make the correction. I have came up with the functions needed but for some reason the gdk_drawable_get_size(window->window ,&WindowWidth, &WindowHeight) and other similar functions only give the correct size value after the second run of the signal function. The result of the first run is just 1 to both size and width. (I have read the issue of X11 not giving correct results, but i think this is not it)</p>
<pre><code>event_button = (GdkEventButton *) event;
if (event_button->button == 1)
{
if (active == 0)
{
gboolean dummy;
gint WindowHeight, WindowWidth, WindowPosition[2];
GdkScreen *screen;
gint ScreenHeight, ScreenWidth;
dummy = FALSE;
gtk_widget_show_all(window);
gtk_window_present(GTK_WINDOW(window));
gtk_status_icon_position_menu(menu, &pos[X], &pos[Y], &dummy, statusicon);
gtk_window_move(GTK_WINDOW(window), pos[X],pos[Y]);
gdk_drawable_get_size(window->window ,&WindowWidth, &WindowHeight);
screen = gtk_status_icon_get_screen(statusicon);
ScreenWidth = gdk_screen_get_width(screen);
ScreenHeight = gdk_screen_get_height(screen);
g_print("Screen: %d, %d\nGeometry: %d, %d\n",ScreenWidth, ScreenHeight, WindowWidth, window->allocation.height);
gtk_entry_set_text(GTK_ENTRY(entry),"");
active = 1;
return TRUE;
}
</code></pre>
<p>How can i do what i want in a portable way?</p>
http://stackoverflow.com/questions/1877888/wpf-ui-control-that-mimicks-iphone-vertical-menu0Wpf UI Control that mimicks iphone vertical menu?m_oLogin2009-12-10T00:22:55Z2009-12-10T06:11:58Z
<p>Hi community,</p>
<p>I'm wondering if there is a Wpf control or example that mimics the iphone navigation in its vertical menu. (ex. <a href="http://davidcann.com/iphone/" rel="nofollow">http://davidcann.com/iphone/</a>). The part that actually interests me is the horizontal scrolling of a new menu once an option is selected in the parent menu.</p>
<p>I'm open for suggestions.</p>
http://stackoverflow.com/questions/1873288/adding-id-to-a-tag-in-drupals-primary-menu0adding id to a tag in drupal's primary menualmac2009-12-09T11:28:31Z2009-12-09T17:11:27Z
<p>hi!
i want to add id tags to primary links menu..
it should look something like this:</p>
<pre><code><li><a id="home" href="#">Home</a></li>
<li><a id="about" href="#">About</a></li>
<li><a id="contact" href="#">Contact</a></li>
</code></pre>
<p>currently, it's just</p>
<pre><code><li><a href="/test/drupal/content/home">Home</a></li>
<li><a href="/test/drupal/content/about">About</a></li>
<li><a href="/test/drupal/content/contact">Contact</a></li>
</code></pre>
<p>to change the address to "#" is it ok to use url aliases?</p>
<p>I just want to add attributes to <strong>l()</strong> when it creates the primary menu, thatz it in a nutshell..</p>
<p>any suggestions?
should i edit any file or create new function to do this job?
I'm using zen theme(just for an info)
many thanks..</p>
http://stackoverflow.com/questions/1850853/asp-menu-driving-me-insane1ASP Menu driving me insanesimplesimon2009-12-05T02:05:53Z2009-12-09T11:26:12Z
<p>Hi there,</p>
<p>I am trying to create a menu using ASP (I have never used ASP before, im a PHP man) using values stored in a database.</p>
<p>basically the html layout i want is as such:</p>
<pre><code><ul>
<li>
<ul class="sub-menu">
<li class="sub-menu-li">Test</li>
</ul>
</li>
</ul>
</code></pre>
<p>I need to loop around the root menu items rs("AD_Level") which is equal to 0 for root objects, then inside that loop, lop around anything that has the same parent id eg if the current record is AD_Level =0 and AD_Parent=5 then loop around all items with AD_Parent 5 and AD_Level != 0 and insert the values into html and so on and so forth.</p>
<p>Please help! I am struggling with a new language and cannot see a way to do this without losing sanity</p>
<p><strong>Edit</strong> <em>(Extracted from Comment by OP)</em></p>
<pre><code>while not rsAdmin.eof
sPar = rsAdmin("ad_parent"
if rsAdmin("AD_Level")=0 then
while not rsAdmin2.eof
if rsAdmin2("AD_Level")<>0 and rsAdmin2("ad_parent")=sPar and rsAdmin2("AD_Sec_Level")=>2 then
response.write rsAdmin("AD_Menu")
end if
rsAdmin2.movenext
wend
end if
'' # if not rsAdmin.eof then sPar=rsAdmin("AD_parent") rsAdmin.movenext
wend
</code></pre>
<p>that is my code </p>
http://stackoverflow.com/questions/1079696/wpf-how-to-find-item-clicked-on-in-menu-handler-method0WPF - How to find item clicked on in menu handler method?Thomas Bratt2009-07-03T14:50:58Z2009-12-08T23:15:29Z
<p>How can the handler method of a WPF menu item determine which item in a ListView was clicked on?</p>
<p><strong>Edit:</strong>
The menu is a context menu which has been set for the ListView. The problem is to find which ListView item has been clicked on when the context menu item is selected. </p>
http://stackoverflow.com/questions/1844109/drupal-module-nested-menu-items0Drupal module nested menu itemsDan2009-12-04T00:33:46Z2009-12-08T20:08:48Z
<p>In implementing <a href="http://api.drupal.org/api/function/hook%5Fmenu" rel="nofollow">hook_menu</a> for a module, I am trying to put some items into a submenu.</p>
<p>So far I have something like this</p>
<pre><code>$items['MyModule'] = array(
//...
'page callback' => 'system_admin_menu_block_page',
'file' => 'system.admin.inc',
'file path' => drupal_get_path('module','system'),
);
$items['MyModule/MenuItem1'] = array(
//...
);
$items['MyModule/SubMenu'] = array(
//...
'page callback' => 'system_admin_menu_block_page',
'file' => 'system.admin.inc',
'file path' => drupal_get_path('module','system'),
);
$items['MyModule/SubMenu/SubMenuItem1'] = array(
//...
);
</code></pre>
<p>I expect the <code>SubMenu</code> to appear as, well, a submenu to the <code>MyModule</code> menu, and for the <code>SubMenuItems</code> to appear under that submenu. This is the default behaviour described at the <a href="http://api.drupal.org/api/group/menu" rel="nofollow">Drupal API</a> documentation.</p>
<ul>
<li>MyModule
<ul>
<li>MenuItem1</li>
<li>SubMenu
<ul>
<li>SubMenuItem1</li>
</ul></li>
</ul></li>
</ul>
<p>However, all items appear under the <code>MyModule</code> menu.</p>
<ul>
<li>MyModule
<ul>
<li>MenuItem1</li>
<li>SubMenuItem1</li>
<li>SubMenu</li>
</ul></li>
</ul>
<p>What am I doing wrong?</p>
<p>*EDIT: A typo (which I have fixed) caused <code>SubMenu</code> to be a separate element rather than a child element of <code>MyModule</code>. I still don't understand why <code>SubMenuItem1</code> does not render under the <code>SubMenu</code>, though.</p>
http://stackoverflow.com/questions/1861571/does-iphone-provide-any-api-for-inserting-menu-selections-into-e-mail-sms-and-ad0Does iPhone provide any API for inserting menu selections into e-mail, SMS and Addressbook context menus?bhartsb2009-12-07T17:36:34Z2009-12-07T20:03:18Z
<p>The Blackberry APIs allow one to insert custom menu items (and corresponding event handlers) into their standard email, SMS and Address book context menus. Is there any supported way to do this with iPhone APIs?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1859243/css-fixed-with-horizontal-menu-with-variable-width-tabs-using-ul0CSS: Fixed with horizontal menu, with variable width tabs, using ulcbp2009-12-07T10:46:09Z2009-12-07T12:59:35Z
<p>I have a horizontal menu. The markup looks like this:</p>
<pre><code><ul class="menu">
<li>Item 1</li>
<li>Longer Item 2</li>
<li>Item 3</li>
</ul>
</code></pre>
<p>Submenus and suckerfish dropdowns will come later.</p>
<p>The <em>ul</em> needs to span the width of the page (e.g. 100% or 1000px).</p>
<p>The <em>lis</em> should vary in width based on their content.</p>
<p>So the result would look like this:</p>
<pre><code>-----------------100% of page------------
|--Item 1--|--Longer item 2--|--Item 3--|
</code></pre>
<p>Now it is easy to do this by fixing a width for each li tag, but because the menu will be CMS driven I need to allow the width of the tabs to vary automatically. With a <em>table</em> this would be trivial, but I can't think of a way to do it with a <em>ul</em>.</p>
http://stackoverflow.com/questions/1858352/table-structure-for-menus-in-mysql0Table structure for menus in mySQLshin2009-12-07T07:15:26Z2009-12-07T10:07:50Z
<p>I need advices for a table structure.</p>
<p>I need to create menus dynamically.</p>
<p>There will be more than 3 menus.</p>
<p>Some of menus will have multi-level structures.</p>
<p>What is the best way to strucure the menu tables?</p>
<ol>
<li>All the menus are in one table</li>
<li>Each table should have one table</li>
<li>Any other??</li>
</ol>
<p>Please give me your experience or common practices for dynamically generated menus please.</p>
http://stackoverflow.com/questions/1856617/change-menu-styling-on-fly-or-pass-a-param-inside-jquery-each-iterator0Change Menu Styling on fly or pass a param inside jQuery .each iteratorabolotnov2009-12-06T21:08:27Z2009-12-06T21:15:20Z
<p>I have a bunch of menu links and want to change their style on click - say you click "about" and it becomes bold and red. I select the items and bind click event to them:</p>
<pre><code>$("#nav_menu > *").bind("click",function(){doTrigger(this.id);});
</code></pre>
<p>this way I pass the ID of the clicked item to <code>doTrigger</code>.</p>
<p>Ok. Now in <code>doTrigger</code> I am trying to iterate through the items and change their styles: all to <em>style1</em> and clicked to <em>style2</em> for example. The problem is that:</p>
<pre><code>$("#nav_menu > *").each(function(){;});
</code></pre>
<p>will not let me pass the id of the clicked item.</p>
<p>I think there should be a less complicated way of getting what I need. Besides, I think I am lost, too.</p>
http://stackoverflow.com/questions/1852655/how-to-create-an-sdl-pop-up-menu0How to create an SDL pop up menu ?Kami2009-12-05T16:35:05Z2009-12-05T16:48:57Z
<p>Hi, I've seached around how to create a pop up menu in a SDL window application using c++ ? I haven't found any clues !</p>
<p>I would like to have something that looks like this : <a href="http://www.youtube.com/watch?v=Mc%5FCE9OiHvA" rel="nofollow">http://www.youtube.com/watch?v=Mc%5FCE9OiHvA</a></p>
<p>I've tried to use glutMenu, but it doesn't work ...</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1842930/blackberry-disable-show-default-menu-on-screen-open0BlackBerry - Disable show default menu on screen openunknown (yahoo)2009-12-03T21:07:25Z2009-12-05T09:45:16Z
<p>Hi,</p>
<p>I have labels and fields in my application screen. When i launch to a particular screen which has many labels and editfields and buttons. The problem is, when i launch a particular screen, default menu is popping up with "Show Keyboard", "Switch Applicaiton" and "Full menu" automatically when launching a particular screen. I don't want to get this menu when launching a screen. How do i ignore showing it? How to do that. Please advice.
Note: Eventhough there is no controls in the same screen, Menu is still popping up this.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1841961/drupal-menu-system-outputting-a-tree-one-level-down2Drupal Menu System - Outputting a Tree One Level DownJumper20102009-12-03T18:36:33Z2009-12-04T18:55:07Z
<p>I've been reading through the various menu functions in Drupal, but there are sooo many, and I've reached a point of utter confusion and despair... Hoping one of the smarties here can help me out... </p>
<p>Basically, I have four levels to my menu. I'm trying to create a tree that outputs from the second level down. </p>
<p>So, the menu looks like this: LEVEL ONE > Sublevel A > Sublevel I > Sublevel a</p>
<p>I'm trying to output the menu tree beginning with Sublevel A
(i.e., Sublevel A > Sublevel I > Sublevel a)</p>
<p>But, can't for the life of me figure out how to do that... I tried simply getting the mlid of the Sublevel A menu (in this case 69), and then </p>
<pre><code><?php print theme_menu_tree(69); ?>
</code></pre>
<p>but it just prints out '69'. Not at all what I expected... </p>
<p>Anyone know how to do this? </p>