menu

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 already expanded (with no arrow to click)? Here is an image of what I am talking about, before and after clicking aforementioned arrow: ...

Popup submenu not visible after iframe width

embedded a popup menu inside an iframe. But second/third level sub-menus not visible when it goes beyond iframe width. Thanks in advance for any help!! ...

java console menu

I'm writing a java console menu. however, my jre doesn't support "Scanner". What is the walk around to this problem? java.util.Scanner scanner = new Scanner (System.in); ...

CSS problem with IE6 to render a menu

Hello all, I'm not a designer, so my knowledge of CSS/Javascript is a bit limited. Unfortunately I received a task to solve an issue with a menu (rendered with div, ul and li elements and CSS/jQuery). The menu renders fine in all browsers except IE6. But I have no idea on how to fix the problem at hand. The problem occurs in the follo...

Standard Menu Item Location on Linux

Where should I put a .desktop file in order to ensure that most desktop environments find it? Is there such a location? In addition, is there any standard place to put it in the user's home directory so that only that user sees it? ...

How do I make a collapsible menu in javascript?

Hi all, how do I made an Expanding and collapsiable menu in java script where clicking on one menu will expand the children inside that and collapse other expanded menu? ...

Sifr Horizontal Menu with LI

Hello, I am designing a very simple horizontal menu with sIFR and CSS list. The thing about it is that it assigns a certain width to it that makes texts of different widths´ spacing look weird on screen. I´ve seen a default width and height of a certain amount, but what I need is to make it so that the flash is exactly the size of the ...

Anyone know of a jQuery fisheye/dock navigation plugin that is able to have a fixed position?

Hi, I'm looking to put a horizontal fisheye/dock nav on my site, but I need it to be fixed positioning... all the ones I've found do not support fixed positioning. Here are links to some of the ones I've found: jQuery OS X Dock #1 - Doesn't support fixed positioning CSS Dock Menu - This is very similar to the one above... euDock 2.0 ...

Showing and hiding a menu on button click, and hiding it with outside clicks

I have the following code that just has controls relating to an item. <ul class="controls"> <li><button type="button" class="button1" value="somevalue">&nbsp;</button></li> <li><button type="button" class="optionsbutton" value="somevalue">&nbsp;</button></li> <li class="options"> <ul> <li>Option 1 link</l...

Can a css menu do this?

Is it possible to make a dropdown type menu navigation without using javascript and to show an image next to each items? Also I would like to make this work with a table, so when you hover over a table cell, it would dropdown a list of links with an icon next to each one. I am not sure if this is even possible without the use of javasc...

Drupal Module Development hook_menu() For Semi Static Pages

I have a page that is definitely not a form but I need to use some callback functions to load data from an external source and display (e.g. a list of buildings on campus and their accessibility information). What I have a need for is a landing listing page (lists all the buildings) and a 'view individual building' page. Also, I have a ...

Drupal Module Add Menu Item To Primary Links?

Is it possible to add a menu item from within hook_menu() directly to the primary-links menu instead of navigation where they like to reside by default? ...

little folding triangles?

Based on the style of the 'turning' triangle that opens up a sub menu. Say I had a form that had lender name address city.... how would I add extra section to that form for a second lender name address.... ? Not many people are going to need this on my site but the one's that do, must have the extra fields. I would like to conceal the e...

Accordion Menu - How do I know that it will slide up or down??

Hi I have a question I got an accordion menu(code below) and under the accordion menu I have a tag box. When accordion menu extends, I want to make my tag box go below the extended menu instead of extended menu covering up my tag box. So I change the value of css property "top" for my tag box after I count the # of sub-items being opene...

Sync JMenu ButtonGroups with JToolbar ButtonGroups

Hi, Imagine I'm making a simple Word Processor with Java Swing. I've got a set of Actions written to perform text justification. On the MenuBar I've got a menu: View Left Justify Center Jusitfy Right Justify This consists of JRadioButtonMenuItems and a ButtonGroup to ensure only one item is selected at any one time. Also, ima...

Query relating positon of the dropdown menu withrespect to the size of the browser

Hi , i m usin a vertical deopdown menu for my website .i had set its top and left attrtibutes in pixel to fix its position according to its parent elements postion.but when i reduce the size of the browser the dropdown menu remains at the same positon where it was when the browser was at its full size.can u helpme with that. if posible p...

How to speed up sequential JQuery load() requests to the Same div.

i have two links <a href="page1.html">page 1</a> <a href="page2.html">page 2</a> <div id="content">&nbsp;</div> 1. I use JQuery to load them into a Div when the links are clicked. $('#content').load('page1.html'); 2. When the second link is clicked I empty the div $('#content').html(''); 3. and load the second file in; $('#co...

Blackberry trackball click, instead of responding to event, context menu is shown why?

I'm running into the following scenario on some devices: when the use clicks on field and expects an response, instead of properly responding to that click event, the device shows the context menu at the bottom center of the screen. navigationUnclick and trackwheelUnclick From what I've read, I can override navigationUnclick and trackwh...

Place a dividing line in a menu in WPF

In XAML, how do I put a standard dividing line in a menu? eg <MenuItem Header="_File" Name="m_fileMenu"> <MenuItem Header="_Open" Command="ApplicationCommands.Open"/> <!-- Trying to put a divider here! --> <MenuItem Header="-" /> <!-- Wrong guess --> <MenuItem ...

fetching only part of a Drupal 6 menu

I'd like to pull out just one section of my navigation menu - a single section of the admin menu structure. I can load the entire navigation menu tree, but I can't see an easy way of pulling out just one segment of it. Is there an easy way to do this, or do I have to do something hacky? ...