A menu item is a child element of a menu that provides the user a means to view and execute a specific application operation.
0
votes
1answer
14 views
Farpoint Spread control captures Ctrl+Z instead fo MenuItem
I have a form where there is shortcut applied to a MenuItem. The problem is that when the focus is inside the Spread control it traps the Ctrl+Z press and the shortcut never fires.
If the focus is ...
0
votes
2answers
15 views
menu link opens module under menu module - joomla 2.5
maybe it an easy solution for someone..I would like how can I set up an item in menu (positioned on right side of template), that when I click it, it opens/shows a module (news blog) under that ...
-2
votes
0answers
44 views
How to get WPF Menu items names when window loaded?
I'm new in WPF and I have this :
<Grid>
<Menu VerticalAlignment="Top" Margin="8,13,20,0" Foreground="#FF4B5D51" Height="29" Name="baseMenu"
...
0
votes
1answer
14 views
Is it possible to assign an Id to an asp:MenuItem?
I have an asp:Menu which currently has 4 menuitems within it. I have been able to set the id for the menu as a whole but the hyperlinks for the menuitems are mostly the same. I would like to be able ...
0
votes
1answer
30 views
Slide menu with javascript
I'm trying to create a new menu with job listings for my wordpress page, like the one on this page: http://www.resume.se/, where it says Senaste jobben (sorry for it being in Swedish, hope you get ...
1
vote
1answer
43 views
Databinding menu items fails at run-time
I have a MenuItem where the ItemsSource property is databound to an ObservableCollection like so:
<MenuItem x:Name="RecentItems" Header="Recent" ItemsSource="{Binding Path=RecentItems}" ...
1
vote
2answers
47 views
Android and menus
I'm a Java programmer with experience. I started working on a small Android project and i got soooo frustrated by how much Android has complicated programming just to be more flexible.
Exactly, the ...
0
votes
1answer
21 views
VirtualizingStackPanel not aligning menu items vertical on applying theme
Before applying WPF theme - BureauBlue.xaml theme, I can see menu items aligning vertically with the below code:
<Menu.ItemsPanel>
<ItemsPanelTemplate>
...
1
vote
1answer
24 views
how to get another menu item, in onOptionItemSelected
I have menu file like
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/action_select_all"
android:orderInCategory="100"
...
0
votes
2answers
29 views
Make ToolStripItemCollection Property
How can I make a ToolStripItemCollection Property for a ContextMenuStrip. I thought it would be simple like this
ContextMenuStrip _Menu = new ContextMenuStrip();
public ToolStripItemCollection ...
0
votes
0answers
13 views
MFC Find Menu Not Working
This is weird! In the Release build of my MFC application (but not debug) the find menu doesn't open the find dialog if I go through the menu itself. But the Ctrl+F accelerator does work. It's like ...
0
votes
2answers
41 views
Get and Set ContextMenuStrip Items
I have a ContextMenuStrip declared in a custom control, and i cant seem to find a way for the control to return or set the ContextMenuStrip's items collection.
I tried this code but it doesn't work
...
0
votes
3answers
36 views
how to add a class to one dynamic menu item?
php:
$sql = "SELECT id, menuname
FROM table
WHERE status = 'active'
ORDER BY order ASC";
$result = mysql_query($sql);
$menu = "<ul>\n";
while ($row = ...
0
votes
3answers
72 views
Why Is ActionBarSherlock Menu Not Working?
Im a noob to android development and i'm a having an issue making the menu item listener work.
When i click on the menu item a toast is supposed to display but nothing happens. I have the correct ...
0
votes
1answer
15 views
Role implementation not picked up by menu list
I am implementing user roles. I have menu list drawn in HTML and I am controlling the visibility of them from my code behind. I have 3 database tables, User w/ User_Number, User_Role_ID, Roles w/ ...
0
votes
1answer
24 views
how to get checkbox of actionbar work (added by setCustomView )?
Im trying to use a checkbox in actionbar,im using actionbarsherlock.
i've tried very hard to get the checkbox work,now I've made the UI (bu using the setCustomView method),but I'm stucked at catch the ...
0
votes
0answers
30 views
Closing menu from code via datepicker selectionchanged event freeze the application
Solved : i used the Calendaer_Closed Eevent insted
but why the application got stuck i don't know
maybe becuse it was in the middle of some action at the changed event
When I select a date from the ...
0
votes
1answer
86 views
Setting hover on specific li menu items using JQuery
I have a menu and I would like to be able to be able to hover over the menu items under Policies and have a tool tip appear using JQuery. My thought would be to use the selector ...
0
votes
0answers
49 views
If the menu item is visible
I want to see if this: http://spunit.tk/x/Untitled-1_2.png is visible or not. I've tried this:
if ((menuStrip1.Items[1] as ToolStripMenuItem).DropDownItems["itmAdd"].Visible == true)
But it doesn't ...
0
votes
0answers
33 views
SharePoint SuiteBar Customization (UserMenu) Issue
I have customized the user menu with direct links for My Profile (renamed “About me”), Edit Profile, My Page, and Sign Out.
I have pointed the links in the drop down menu to the following links ...
0
votes
1answer
37 views
Why is this Command Dependency Set Value Property not triggered? (DevExpress.AgMenuItem)
I am using the free version of the DevExpress Silverlight Menu (AgMenu 8.4). Sadly the MenuItems of this menu have no "Command" and "CommandParameter" properties.
I decided to inherit from the ...
1
vote
1answer
28 views
Changing content of categories pages
I have a table called categoria with 10 rows:
(idcateg, descri) VALUES
(1, 'Action'),
(2, 'Classic'),
(3, 'Fight'),
(4, 'Others'),
(5, 'Puzzles'),
(6, 'Racing'),
(7, 'Shooting'),
(8, ...
1
vote
1answer
35 views
WPF: “ApplicationCommands.New” showing incorrect Source in case of MenuItem
I am new to WPF and am going through the examples of Professional WPF in .net 4.5. In the commands chapter, there is an example where multiple controls can send the same command. I am using a Button, ...
0
votes
1answer
34 views
How to attach MenuItem to parent MenuItem in logical and visual trees?
I have created several MenuItems (not in XAML) so i added them the parent item :
( Parent_Menu as MenuItem ).Items.Add( Menu_Item );
Then i applied my styles by VisualTree list (in a loop) . But ...
0
votes
2answers
37 views
Change CSS property on each page using jQuery
I'm trying to make a navigation menu for a website. The hover event (jQuery) changes <div>background position so a user can see where he is pointing. The final effect I want to achieve looks ...
0
votes
1answer
52 views
Hoverover Menu Select not working in IE
I am using the below function to Hover-over a menu and select a child item. It is working fine in Firefox and Chrome, but does not seems to work in IE. In IE WebDriver can locate the 'source' element ...
1
vote
1answer
36 views
Android: what kind of menu layout is this?
I want to make an menu for my app just like on this picture from Instapaper app
http://i.stack.imgur.com/KwLrx.jpg
So the menu overlays the part of the current activity and when taking actions from ...
0
votes
1answer
37 views
dynamic assignment of a class to list
I am writing because I have a problem of allocation of a dynamic class to a list.
This is because you probably do not run well the sub-items.
My code is:
<nav id="menu">
<div ...
2
votes
0answers
42 views
Code for menu items work in one class but not working in other
when i use this same code for menu item in other class then menu is shown. but when i implement in this class then don't show , can anyone tell me is there any problem with menu item if we use ...
3
votes
1answer
132 views
Two Spinner menu items in ActionBar width
I've manually built two spinners in the Action bar, by creating at first two menu items in the main.xml file. With the line
cSpinner.setAdapter( ArrayAdapter.createFromResource( this,
...
0
votes
0answers
12 views
Two different MenuItems with different time response
I have two different Menu items (Flipping and Sharing) that share a single activity. Each one of them, works perfectly and smooth by its own, but when I put them together, the flipping action takes ...
0
votes
1answer
26 views
RadMenu item selected should focus
I have Radmenu placed in master page and if I click any item ,page will get post back so its difficult to maintain item selected focused with the color.I tried placing an ajaxpanel,still its getting ...
0
votes
2answers
96 views
How to change the position of menu items on actionbar
I'm developing one application in which I have to add a custom layout on actionbar. Adding the custom layout is done, but when I'm adding the menu items on actionbar my custom layout changes it's ...
0
votes
1answer
30 views
Form sent to back on interaction with menu item
I've got two forms, one being frmMain and the other being frmDatasets. The idea is that frmDatasets is used to manage the application's datasets (it's a program for comparing sorting algorithms).
I ...
1
vote
1answer
20 views
Binding a Menu Item to a property of the First Responder
I have a document-based application.
In my document class,
I have a BOOL property : isActionPossible.
I also have an IBAction : - (IBAction) doTheAction:(id)sender.
Now, in MainMenu.xib, I want ...
0
votes
2answers
125 views
menu item placement, swipe feature, and more
There is a design like this:
How do you place the sliding menu icon over to the top left corner? Plus I did want to add on a swipe feature to the screen:
The code that I have so far is broken ...
0
votes
1answer
21 views
cocos2d for each CCMenuItem
Im setting up a CCMenu, with menu Items like so:
CCLabelTTF *label1 = [CCLabelTTF labelWithString:@"level 1" fontName:@"Marker Felt" fontSize:32];
CCLabelTTF *label2 = [CCLabelTTF ...
0
votes
1answer
37 views
Restore changed menu state after rotation of a device
I'm writing an application, which has a menu with buttons and an image. I press the button and label of the button changes from "Record track" to "Stop recording". The issue is when I rotate my ...
0
votes
0answers
36 views
android menu item click
I have implemented action bar with menu items. when i touch menu item, it opens up the activity without any problem. but my touch/click event doesn't highlight the menu item. so it's confusing to know ...
0
votes
0answers
9 views
BreezingForm not found after assigned as new menu item
I just created a breezing form and made it a new menu item. It shows up in my menu but when clicked it says 'form not found'. Extremely frustrated. How do I connect the form to the menu item?
0
votes
0answers
10 views
Telerik RadMenuItem SubmenuHeader role does not appear to work
I have a Cascading RadMenuItem which uses HierarchalDataTemplates.
I can change the first submenu by doing the following trigger
.....
However the trigger for SubMenuHeader ...
0
votes
2answers
164 views
Bottom menu with ActionBarSherlock
Im trying implement the bottom menu with ActionBarSherlock. In Android 2.1, the menu are displayed, but in the Android 4, the menu is not displayed. What's wrong?
Below, the code:
public class ...
3
votes
0answers
160 views
ActionBarsherlock how to set dividers on menu items with icons only
Hello android developers,
I know this question have been asked many of times, and I have also tried many solutions but they are not working for me.
Firstly I am using action bar sherlock library to ...
0
votes
0answers
21 views
Android: Change MenuItem State
I'm trying to display a button of my ActionBar (ActionBarSherlock) as pressed or focused programmatically.
I tried the following:
myMenuItem.getIcon().setState(android.R.attr.state_pressed);
but it ...
0
votes
1answer
55 views
Dijit.MenuItem and <a href=></a> link
My question is similar to that one:
Dijit Menu (bar) with link
I'm using Dijit Menu as in following listing:
<div data-dojo-type="dijit/Menu">
<div id="menuItem" ...
2
votes
2answers
117 views
JSF attribute `rendered` in `rich:menuItem` can't read `boolean` value from parameter
I am using JSF 1.2_09, rich faces 3.3.3, jsf-facelets 1.1.14.
Looks like attribute rendered in rich:menuItem can't read boolean value from parameter enableEdit...
Even if enableEdit has true value, ...
0
votes
0answers
43 views
menu item placement
As the title describes, I am looking to place my menu items on the top of the sherlock action bar. This task that I just described, with all my knowledge till now, should have been there by default ...
0
votes
0answers
40 views
menu label hide in joomla 2.5
In joomla 2.5 menu, I have used background image of each menu item but I can not hide the label of each menu item. I just want to show the background image but do not want to show the label of each ...
3
votes
3answers
62 views
Adding an click event to a programatically added menu item
I am working on a C# WPF project and I am storing some items in an SQLite database, when the program loads, it then retrieves the items from the database and adds the items to the menu. What I then ...
1
vote
1answer
95 views
How to fit WPF MenuItem's size based on it child's size
I have context menu. One of menuitems contains combobox.
When the menu item w/ combobox is rendered menuitem is much wider then the combo box.
Any ideas how I can set menu item's size to be snaged to ...


