menu

How come nobody wrote RadioMenuItems class for Winforms?

Or maybe google is just not so friendly to me? What I want is this simple thing: constructor that accepts an array of menu item objects Value get/set property that would set all the Checked properties right bind to all Clicked events of the supplied items and provide One event Working DataBind facilities If you encountered such a n...

Android menu item separetor (menu item in different line)

How can i define each menu item in different line? Right now if I'm adding 4 items they will get the form of 2X2. Is there a way to add them differently? Like 1 item and 3 below it? or 1X4 ? ...

XML problem in the basic menu example

Hi there, I am trying to create an app with some menus, an I am following the basic example available in the official android site: http://developer.android.com/guide/topics/ui/menus.html My problems appear when I define the menu in the XML. After creating the folder res/menu and creating the menu_option.xml file from eclipse.... The ...

How to delay hiding of a menu with Jquery Dropdown Menu?

I have a dropdown menu that works fine, but I would like it so, that if I hover off the menu, it doesn't immediately hide again. So basically I would like a one second delay. I have read about setTimeout, but not sure if it is what I need? $('#mainnav a').bind('mouseover', function() { $(this).parents('li').children('ul').show(); }...

drop down menu and seo

"Hidden links and contents are not good for seo". Whether drop down menu affects seo. If yes any perfect solution for drop down menu with seo perspective? ...

Dealing with Android devices without MENU key

I'm told by some users that my Android app is not usable because their device does not have a MENU key. What's the best way to deal with these devices? Is it possible to detect if the device lack a MENU key and show a menu button only in this case? And most importantly, how do you test this in the simulator? Thanks. Edit: Apparently ...

[WPF] Button with menu

How to create a Button with menu? The same like on meny windows in Windows. Example: while opening file: link text ...

Change how Spry expands

I'm new to Sprys and am inserting a horizontal menu Spry into a webpage using Dreamweaver. The problem is that it is contains a LOT of information. How can I get my horizontal Spry to expand like: ITEM_1 ITEM_2 ITEM_3 ITEM_4 ITEM_1A ITEM_1B ITEM_1C rather than: ITEM_1 ITEM_2 ITEM_3 ITEM_4 ITEM_1A ITEM_1B ITEM_1C ...

jQuery UI unofficial menu usage

There is a jQuery ui menu which is unofficially in the 1.8.1 code. How would I even use that if I wanted to? I have used the code here: http://www.filamentgroup.com/lab/jquery_ipod_style_and_flyout_menus/ to make a menu. However, if I have an autocomplete (which is using the undocumented menu behind the scenes) where this javascript is i...

How to add icons to the android context menu?

How to add icons to the android context menu? ...

menu with: hover, click, class change and ajax

The last minimized code is, I hope it will help someone: $("#menu").find("a").hover(function(){ $(this).addClass("active"); },function(){ $(this).not(".clicking").not(".selected").removeClass("active"); }); $("#menu").find("a").click(function(){ var $this = $(this); $("#ajaxP").fadeIn("fast"); $("#normalcontent")...

Change layout of menu to look like a treeview

Hi everybody! How is it possible to change a WPF menu control layout to look like a treeview control? Thaks in advance ...

preventing jCarousel form returning to begining position after loading page

Hi all, i am using jCarousel as a menu in my website. there is a list of links there which is longer than its containing elements and jCarousel is used as a scroll bar to view that list. my problem is that whenever a link is clicked and a new page is loaded, jCarousel resets to its begining position thus sometimes an active link is no ...

Submenu within menu within menu ?

On pressing menu button , I have 2 options : Add & more. On click of more i have 3 options : Organize ,Export & Exit On click of Organize i want other 5 options. On click of more i get my submenu. But i want other 5 options on click of organize.How do i proceed??? My code in parts is as follows : XML file-------------------------------...

Force close message when preferences are called via menu button

I see no problem in the code. Help? preferences.xml <?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"&gt; <ListPreference android:title="Gender" android:summary="Are you male or female?" android:key="genderPref" android:defaultValue="male" android:entries="@array/gende...

Blackberry custom OVERLAY horizontal menu

Thanks to Max in this post, I made an horizontal menu. But now I'm trying to make an overlay menu, i I don't find how to do that... Let's see what i got first. So, I have a class MapScreen which display my map: public class MapScreen extends MenuScreen Then, I have in the same file the MenuScreen class like this that allows to displa...

Delphi Custom popup/dropdown, how?

I want to make a custom dropdow/popup menu with a shadow nicely beneath it. The problem is that it is not a standard menu and I need to put some components on the popup/dropdown. So basically I want a dropdown I can do whatever I want with, not being limited to simple menuitems. I want it to act like a normal popupmenu problem is where d...

Autorun a removable device in Linux

I have a removable device setup so it autoruns when plugged into a Windows machine and pops up a message giving the owner's information, so it can be returned if lost. Is there a way to do this in Linux as well? It doesn't need to be complex, it can be an option in a right-click menu, or a splashscreen, or anything. ...

Correct way to create a menu with shortcuts in WPF

What is the correct/best way to create a menu with hotkey shortcuts? I simply want a File menu like Visual Studio's that has New, Open, Save, Save All, Exit, and a few other standard shortcuts. It seems that InputGestureText displays the appropriate text, but since it's called "Text" and doesn't seem to trigger events, I'm going to a...

Dynamic menu items in WPF

Is there a way to create a section on a menu for a list of menu items to be populated by something like an ObservableCollection? I'd like to replicate the Window functionality in Visual Studio, where the open document tabs are listed in a numbered list, limited to the first 10. ...