menu

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 row should display the submenu options horizontally on the 2nd row. See it here live. desired: option1 option2 option3 ...

using spry in asp.net master page

I am using Spry menu bar in asp.net but the problem is that when i use the menubar js and the css alongwith the javascript to initiate the widget in a master page nothing happens on mouse over while when i use the same code in a simple .net page it works perfectly. Am i missing something. Please suggest. A menu should be used in master p...

Menu and update to the main pane (WPF)

I am trying to build a project where Menu is to the left of the screen (eg. Tree view in Outlook). And when I click on individual items in the tree view on the left the main pane updates (Similar to Outlook). Can anyone provide some sample code or links to sample code that I can use as reference? I am sorry if this is ambiguous. Any hel...

Blackberry Menu from native blackberry application

I have an application that inserts an ApplicationMenuItem into the native blackberry contacts menu. I can get this to work just fine. Now my question is how would I change or remove that ApplicationMenuItem based on the contact that i am highlighted on? Would I need to use a GlobalEventListener? I assume overriding makeMenu can only be d...

WPF Menu Open direction

I have the following menu. <Menu> <MenuItem Header="Menu1"> <MenuItem Header="Sub1"/> <MenuItem Header="Sub2"/> <MenuItem Header="Sub3"/> <MenuItem Header="Sub4"/> </MenuItem> <MenuItem Header="Menu2" /> </Menu> The sub-menu when opened is ...

CSS issue: jqGrid and ASP.Net CSS Friendly Adapters Menu - IE7

I'm having an issue in IE 6 and 7 when using jqGrid (v3.6.4) and the ASP.Net CSS Friendly Adapters for the ASP.Net menu control. The problem I'm running into is that my menu tiers render beneath my grid no matter how high I go with the z-index, but only my vertical menu (using .AspNet-Menu-Vertical). When using a horizontal grid, the su...

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 parent item has a visual indicator that the current page corresponds to one of its child items, and its child items remain displayed. Child2 i...

Bind ASP.NET Menu control to XML

Hi, I'm trying to bind my own xml file (for some certain purposes i don't want to use a sitemap) to ASP.NET control. I have this code which - with help of some articles I have found - should bind ASP.NET Menu control to xml file, but it doesn't. Do I miss something? XmlDataSource xmlSource = new XmlDataSource(); xmlSource.DataFile = Re...

Strange menu behavior

Take a look at http://sensenich.bythepixel.com The top menu, when you hover over "Products" and expand "Propellers", everything works as it should. I want the Propellers to collapse when I hover away from the menu, which it does. However it also collapses the propellers when I try to click on "Accessories". I can't for the life of me...

Weird top padding on horizontal list items

I have a horizontal list on which I have placed borders on the li tags in order to separate them. Its all working well but I have some mysterious padding on the top of the li which is making the borders taller than the text: http://img641.imageshack.us/img641/3706/picture13y.png I have played around with the padding and margins but I c...

android : set the menu out / visible

Hi everybody, Maybe this question has been asked already but I can't find any information about that even in the "Menu" section of Android's doc... So does anyone know if there is a way to set the menu out on an activity (to avoid the user clicking on the menu button of the phone)...? ...

Android Slide Menu as Home

Hi, is it possible to create a menu similar to the one that appears in home screen of Android? Thanks ...

QT How to remove the action menu item

Hi, when i add the widget to the main window, by default the action menu item will be present, how to remove that? menuBar()->setVisible(false); verAction = new QAction(tr("&Version"),this); menuBar()->addAction(verAction); connect(verAction, SIGNAL(triggered()),this, SLOT(displayVersion())); displayAction = new QAction(tr("&Display"...

What is the best menu metaphor for silverlight line-of-business apps?

So I'm porting an application from WPF to Silverlight and I have realized that there is no standard Menu control. So I look around and find some third-party controls that emulate the menu control, like this one at codeplex: But then I decided to take advantage of this situation and think of some new metaphors besides the standard men...

Javascript menu that hovers over initial element

I'm trying to build a javascript menu using prototype that when you mouseover an element, that element is hidden and a bigger element is shown in its place that closes onmouseout. This is what I have so far to give you an idea, but it doesn't work and is buggy. I'm not sure what the best general approach is: EDIT: using the prototype ...

how to add the sub menus for the glossy css menu templates

Hi to all any one plz do help me to get the vertical glossy menu...in css or java script etc., ...

CSS horizontal menu links issue

I've got a simple (horizontal) CSS menu list with a problem. The links in the list are only active up to a certain point, for example menu item four in my list doesn't work, 1, 2, and 3 are fine. By not working I mean both 'hover' and hyperlinking actions are gone. It's got something to do with the 'float' and 'overflow' attributes, if...

Flex: Menubar, menu click

I do not know why but I see that itemclick event on a menubar do not fired unless you click a sub item. What is the clean way to handle clicks on menuitems which are on the top level and do not have sub menu items. For example I want to fire an event whenever MenuItem B is clicked. <?xml version="1.0"?> <!-- menus/MenuBarControl.mxml ...

default menu option

how can I make this menu here have the default be the "about" tab? http://www.sohtanaka.com/web-design/examples/horizontal-subnav/ so when your mouse isnt hovering over any of them, its on the about tab? ...

Kohana 3: How to find the active item in a dynamic menu

Maybe not the best explanation, but hear me out. Say I have the following in a config file called menu.php: // Default controller is 'home' and default action is 'index' return array( 'items' => array( 'Home' => '', 'News' => 'news', 'Resources' => 'resources', ), ); I now want to print this out as a menu, whic...