menus

Menu not working in IE

I'm trying to re-build (note, I am primarily an application developer, know very little so far about web development beyond HTML) a website for the family business, and am running into a bit of trouble so far. The CSS menu system I have built works fine in Firefox, but in Internet Explorer, none of the menu items appear when the mouse h...

How can I link main menu links to submenu links in Joomla!?

I have main menu with sublinks, so when you click mainmenu link, it should go to default submenu link. For example: Main menu: Homepage | Information Information submenu has Contact and Location selections and Contact should be active when Information main menu link is activated. ...

How to iterate ul and li elements in php?

I am creating dynamic menus and submenus in php.... Can't know where to start.... I have written all my queries but need suggestion to iterate the result set with Ul and li elements with it.... There may are may not be submenus for submenu and there may or may not be submenus for menus..... Menu1 submenu1 submenu11 submenu12...

How is the Windows menu in a MFC C++ app populated.

One of the standard menus provided to a Document/View app under MFC is the Windows menu. It provides things like tiling and cascading windows, and appends an enumerated list of currently available views at the end of the menu. Problem is, sometimes it doesn't and I'd like to know why. More specifically, I'd like to know how to refresh...

menuitem id in xml format can't be an integer? huh. really?

ok, in menu.add, you add an integer menuitem id. But when you specify the menu in xml, @+id can't take an integer, so you can't test the id for the menu item as an integer in a switch statement. What obvious thing am I missing, because surely an inconsistency this bone-stupid couldn't have passed muster with all those wonderful geniuse...

wx Menu disappears from frame when shown as a popup

I'm trying to create a wx.Menu that will be shared between a popup (called on right-click), and a sub menu accessible from the frame menubar. The following code demonstrates the problem. If you open the "MENU>submenu" from the menubar the item "asdf" is visible. If you right click on the frame content area, "asdf" will be visible fr...

How to remember last state with Jquery?

I have a menu with submenus that can be toggled (hide/show type deal). Is there a relatively easy way to remember last state of the menu? (I hide/show submenu when clicking on a header and change a style of the header so the background arrow will change (up/down)). It works fine, but I'd like it to remember last state, so when user goes ...

jQuery hover menu not disappearing

EDIT: See this in action here: http://jsbin.com/emobi/5 -- and that's using mouseenter/mouseleave. I have a basic menu using some nested UL's, which is pretty standard I think. When hovering over an LI from the "root" menu, I want the UL within that LI to display. Move the mouse off or to another LI, it shows that submenu. Move down ...

Dropdown menus not showing when i use my wpf application via Remote connections

When i connect to my machine using remote desktop the dropdown menus and comboboxes i used in my wpf application is not showing up. And after closing the session when i comes back to my development machine where actually my application runs there also the same issue happens after the remote desktop session. Tried by changing resolution a...

How do I create drop lines while dragging a menu item on a WinForm?

I want to mimic the functionality of Google Chrome/FireFox for example, when rearranging your bookmarks, when you are dragging the menu item, it creates a black line at the proposed drop point, like this: I've already implemented the Drag/Drop functionality to rearrange the menu, but I would like to add these separator lines as an add...

asp menu control

I'm working on an ASP app and I have an asp menu item It shows the menu sub-items when the mouse is over but i'd like it to show the sub-items with a mouse click What can I do? ...

How to split drop down column using Extended Menu Extension in Joomla

I want to split the drop down columns same like the one on www.whitehouse.gov How should I do that ? Please help . ...

How to Develop Dynamic Plug-In Based Functionality in C#

Hello: I've been looking around for different methods of providing plug-in support for my application. Ideally, I will be creating a core functionality and based on different customers developing different plug-ins/addons such as importing, exporting data etc... What are the some methods available for making a C# application extensible ...

Drupal - assign menu to block based on node type

I want to assign a specific menu in left sidebar block, based on the node type of the page currently being displayed. I think it should look something like this, but I am stuck. function my_module_nodeapi(&$node, $op) { switch ($op) { case 'view': if ($node->type == "large_reptiles") { //menu_set_active_menu_...

Hide other domains' menus from node edit form on a Drupal site using domain access

I'm in the process of making some improvements to a live Drupal site that's using the Domain Access module to run a number of microsites. I'm trying to find a way of restricting the menus a user can post content to from the node edit screen. A user on one of the domains should only be able to post content to menus associated with that d...

Removing the navigation menu from the node menu settings in Drupal

How do you remove the "Navigation" menu (and others) from the menu settings on the node edit form? I suspect this can be achieved somehow using a hook like module_form_alter, but am not sure how to implement it. The motivation for this is to remove the confusion our users have when menus other than the standard primary links menu is in t...

Preferred menus for C# application.

Which of the menu tools do you use for C# windows applications? I began with MainMenu, but when I moved to VS2005, only MenuStrip appeared in the Toolbox, so I assumed it was new and better. However, the merge/replace action seems to require a lot more time and effort, and leave one open to maintenance problems. (Perhaps my real question...

WordPress 3.0: Adding sub menus to custom post types

I'm not sure if this is an oversight on my part, or an oversight in the development of WP 3.0 custom post types; you can add new sub menu options to built in Posts or Pages quite easily. I cannot for the life of me figure out if it is possible to add them to a custom post type. I have tried add_submenu_page( 'custom_post_type' ... (repl...

Showing the most recent opened items in a menu bar

I want to create a window with Java Swing. The window will have a menu bar with a File->Open button from where the user can select a file from hid hard drive. The File menu should also have a list of the most recent opened items, like many other applications show. Does anyone know what is the best approach? ...

Show System Menu From Another Window

The project I'm working on right now is essentially an open source version of Ultramon (the multiple taskbar program). Thus think of the application to be just like the windows taskbar. Buttons for each window, etc. This is coded in C/C++ using WinAPI I've just started doing it, and have some of the functionality down. However, I'm get...