menu

Fade out jQuery menu after delay

I'm working on a jQuery drop-down menu that fades in when you hover on the top-level items. I want to set it so that when you move the mouse away the menu doesn't disappear instantly. I have this code: $(document).ready(function(){ $('ul#menu > li').hover( // mouseover function(){ $(this).find('>ul').fadeIn('fast'); ...

XSLT getting last element

Hello, I am trying to find the last element in my xml, which looks like <list> <element name="A" /> <element name="B" > <element name="C" /> <element name="D" > <element name="D" /> <element name="E" /> <element name="F" /> <eleme...

Free javascript navigation menu manager/editor?

I need to build a control that allows content managers to change 3 level menu. Anyone know any javascript navigation menu managers that i can use? ...

jQuery menu broken when moving between list items

I've created a custom jQuery horizontal menu with drop downs. Initially it just faded a sub-menu in when hovering on a list item, and faded it out when moving away. However I want to create an effect where if you move the mouse out of the sub-menu, it doesn't disappear instantly (e.g. if you overshoot it by a pixel). I was made aware o...

Drop down/CSS inquiry

I have an unordered list set up for a hover/dropdown menu. I have the structure set up perfectly as far as the code. The ul and li structure is all set. I am wondering if anyone can tell me the css structure/style to get it to work...aka hover over the main button and have the other links drop down. I need to know how to do that as well ...

PrototypeJS mouseover menu

So i have this menu that is supposed to display submenus which are defined in object initialization by using script.aculo.us effect appear ( mouseover ) and hide them using effect fade ( mouseout from link and menu ). The problem is that i did the job with showing and hiding menus but when i get my mouse out of the link that is supposed ...

Best Practices Question: Modern Menu with Sub DIVs and Alternate Page States

Greetings! I am interested to your feedback regarding best practices for handling a website menu system using modern methods (jQuery?). The old way (in place currently): <div id="menu"> <ul> <li class="navHotel"><a href="#" onmouseover="MM_showHideLayers('hotel','','show','tour','','hide','location','','hide','attractions','','h...

Is it better to disable or omit context/popup menu options?

My application is context-sensisitve and I dynamically build menus for the main window / context/popup, and other places. I typically know if a given menu command will be valid given the current state of the application. Is it better practice to DISABLE/GREY the menu options which currently do not apply OR since I'm generating the menu a...

Cocoa menu with images

I need to make a popup or pull down menu in Cocoa that will contain either an image or an image with text as the representation of the item. Can anyone suggest a way I could do this programatically? ...

asp.net bulleted list and css menus

Is there a decent CSS menu that will work with the asp:bulletedlist control? I've looked at a few different implementation, but most of them (i.e - see http://www.exploding-boy.com/images/center/center.html) rely on a span tag to contain the link text. Or is there a way to force the bulletedlist control to render the link tag using spa...

Get rid of NewApplication in a dynamic way?

Hi, I'm distributing two different versions of one product (like light and pro version). I don't know how to use the same MainMenu.xib if I can not change the placeholder NewApplication in a dynamic way. I would like to use the bundle name instead of "NewApplication". I hope there is an official way to do this without hacking. Thank yo...

How to add drop shadow to the current element in a tab menu?

I've got a tabbed menu that looks something like this: The html for it is simple: <div id="menuContainer"> <ul id="menu" class="undecorated "> <li id="menuHome"><%= Html.ActionLink<HomeController>(c=>c.Index(), "Home") %> </li> <li id="menuAbout"><%= Html.ActionLink<UsergroupController>(c=>c.About(), "About") %> ...

Html.ActionLink : div as target

Hello, I use this menu : http://www.stunicholls.com/menu/jquery-menutree.html I piece of this menu is : <li><a href="#url">MyItem</a></li> I replace by this : <li><%= Html.ActionLink("MyItem", "Index", "ControllerName")%></li> I'd like show the result in "MyDiv" <div id="MyDiv"> </div> How can I do this ? thanks, ...

Menu from MYSQL

hey i am having a real headache with this problem. I have a a menu, i am trying to pupulate it from mysql, this is my result from my sql Axel - rubber - brake Axel - rubber - nobrake Axel - paste - brake Wheel - rubber - brake first row is first level of the menu and so on... so right now the menu is full of duplicates, is there an...

Hiding site actions menu in moss depending on page

I am trying to hide the site actions menu from certain pages with our moss enviroment, specifically non-publishing pages. I was looking to use the SPSecurityTrimmedControl to achieve it, so in my masterpage I have: <Sharepoint:SPSecurityTrimmedControl runat="server" Permissions="ApproveItems"> <PublishingSiteAction:SiteActionMenu runat...

Icons on MainMenu/ContextMenu without losing theming

I would like to use MainMenu and ContextMenu in my WinForms app, and put icons next to some of the menu items. But MenuItem doesn't have any way to specify an icon. It would be easy to add one with owner-draw, but then my menu looks owner-drawn -- I lose all of the default drawing from the XP/Vista theme. What's the best way to get ico...

Help with menu closing, please!!!

i need help with a menu i'm adding on a jquery chat system called cometchat i've been trying to add a facebook like applications menu and i got it to work with opening and closing and it closes clicking everywhere in the body and the bar but the place it should open and close. if someone can help please 'cause im not good at JS. :/ here...

Drupal 6 absolute wildcards in _menu(), is it possible ?

is it possible to handle all wildcards in _menu() by module. I know about specific wildcards like display/page/% but that won't work for paths display/page/3/andOrderBy/Name what If I want to handle unpredicted ammount of parameters like display/page/3/12/45_2/candy/yellow/bmw/turbo I want to have one display/* _menu() path to hand...

WPF Menuitem Border

Hey everyone, I've run into a problem trying to implement a Menu and can't figure out what is going on. I'm trying to make a single-layer menu using the Menu control. Here is my menu code: <Menu DockPanel.Dock="Top" Height="22" Name="menu1" VerticalAlignment="Top" Background="#FF325170"> <MenuItem Header="Featured" Style="{Static...

Menu service in Prism application CAL

Hello all, I am trying to create a Prism (CAL) framework (this is my first forray into CAL) and am having difficulty devising a service for registering menu items for a region). Here is what I have come up with so far... /// <summary> /// Menu item service - allows any module to register menu items with any region /// </summary> public...