A context menu is a menu in a graphical user interface that appears upon user interaction, such as a right mouse click or middle click mouse operation.
2
votes
0answers
119 views
Get context of PopupMenu like ContextMenu
So my ExpandableListView has group rows that are defined like :
group_row.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout ...
25
votes
5answers
13k views
ElementName Binding from MenuItem in ContextMenu
Has anybody else noticed that Bindings with ElementName do not resolve correctly for MenuItem objects that are contained within ContextMenu objects? Check out this sample:
<Window ...
36
votes
6answers
36k views
Detecting which selected item (in a ListView) spawned the ContextMenu (Android)
I have a ListView that will allow the user to long-press an item to get a context menu. The problem I'm having is in determining which ListItem they long-pressed. I've tried doing this:
...
2
votes
1answer
204 views
Creating a submenu in context menu from overridden getActions in Java JHotDraw
I am overriding the getActions method in the Java based framework JHotDraw, an open source project hosted here. The method getActions creates a right click context menu on Figure in the Drawingview. I ...
6
votes
2answers
7k views
Making custom right-click context menus for my web-app
I've a few websites like google-docs and map-quest that have custom drop down menus when you right-click. Somehow they override the browser's behavior of drop-down menu, and I'm now sure exactly how ...
8
votes
2answers
4k views
How can I add a context menu to the Windows Explorer for a Java application?
How would one go about adding a submenu item to the windows explorer context menu (like for example 7-Zip does) for a Java application?
2
votes
1answer
1k views
how to add standard textbox command to jqgrid context menu
If context menu is added to jqGrid using Custom values to Context Menu Items in JQgrid and text filed inline editing is used, textbox standard context menu is not available, it is replace with jqGrid ...
40
votes
6answers
29k views
Find node clicked under context menu
How can I find out which node in a tree list the context menu has been activated? For instance right-clicking a node and selecting an option from the menu.
I can't use the TreeViews' SelectedNode ...
32
votes
3answers
26k views
How to add a custom right-click menu to a webpage?
I want to add a custom right-click menu to my web application. Can this be done without using any pre-built libraries? If so, where can I find a good tutorial that shows how to display a simple custom ...
22
votes
5answers
37k views
right click context menu for datagrid
I have a datagrid in a .NET winform app. I would like to rightclick on a row and have a menu pop up. Then i would like to select things such as copy, validate, etc
How do i make A) a menu pop up B) ...
9
votes
3answers
6k views
Copy text from TextView on Android
I have a ListView where each item is a TextView.
I want to enable the long press behavior similar to an EditText that displays the default context menu with items like "Select all", "Cut all", "Copy ...
3
votes
1answer
728 views
Creating dynamic context menu in Chrome Extension is failing
I am trying to create entries on the Chrome context menu based on what is selected.
I found several questions about this on Stackoverflow, and for all of them the answer is: use a content script with ...
1
vote
1answer
813 views
how to build jqgrid context menu from top level toolbar
Custom values to Context Menu Items in JQgrid contains great sample about adding context menu to jqgrid.
If edit,delete, add operations are dynamically disabled, synching context menu with toolbar ...
2
votes
5answers
5k views
get view id from oncontextitemselected
I've several buttons registered for context menu
how do I know which button was clicked for the menu to appear?
below is the pseudocode that i'll be using. I need to do something related to which ...
4
votes
5answers
9k views
Default ContextMenu Style - WPF
I am trying to modify the default style of the ContextMenu in WPF.
Normally you can creat a copy of the default in Expression Blend using the Edit Control Parts (Template) > Edit a Copy menu ...
12
votes
3answers
15k views
WPF: Displaying a Context Menu for a GridView's Items
I have the following GridView:
<ListView Name="TrackListView" ItemContainerStyle="{StaticResource itemstyle}">
<ListView.View>
<GridView>
<GridViewColumn ...
8
votes
1answer
8k views
Add menu item to windows context menu only for specific filetype
i've dveloped an application that load an image using the context menu of window (right click on the file) and for the moment is working, but the reg key is on
HKEY_CLASSES_ROOT\*
and it works with ...
10
votes
4answers
9k views
WPF ViewModel Commands CanExecute issue
I'm having some difficulty with Context Menu commands on my View Model.
I'm implementing the ICommand interface for each command within the View Model, then creating a ContextMenu within the ...
5
votes
2answers
7k views
onCreateContextMenu() for EditText doesn't work on real device
Just tried to test my app on real device (HTC Desire Z with Android 2.2). And found that my context menus doesn't work at all on EditTexts. Otherwise context menus works: in ListView, ImageView and so ...
3
votes
1answer
5k views
Show context menu when link is long pressed in TextView
I have a TextView with its MovementMethod set to LinkMovementMethod. Text added to the TextView is a combination of normal text and URLs. For URLs, I would like to offer a context menu when the URL is ...
5
votes
3answers
4k views
Adding the same context menu to multiple activities
I'm trying to figure out how to include common pieces of code in multiple activities.
More specifically, I have a context menu that I would like to include in several activities.
I saw this, but just ...
2
votes
4answers
4k views
How to retrieve JSON via ASP.Net context.Request
var OrderInfo = {
"ProductID": "ProductIDValue",
"ProductName": "ProductName",
"Quantity": 1,
"Amount": 9999,
...
1
vote
1answer
1k views
Custom values to Context Menu Items in JQgrid
I am using this link from Oleg and Demo to create context menu. Is there a way to pass some dynamic values to each row apart from rowId. May be one way is to set hidden values for each row and get ...
1
vote
1answer
2k views
Dojo DataGrid Context Menu onRowContextMenu displays even when right-clicking in BLANK area of DataGrid
I have a DataGrid that has items in it. When you right-click on one of the rows, a Dojo Context Menu is displayed with the option to delete that row. If you try to right-click on a blank area of the ...
0
votes
2answers
741 views
Android - EditTexts in Gallery show strange behaviour when being (long)-clicked
my program is based on Google's Hello Gallery example:
http://developer.android.com/guide/tutorials/views/hello-gallery.html
Instead of using images, I create a bunch of EditTexts in the constructor.
...
43
votes
3answers
45k views
How do I create a right click context menu in Java Swing?
I'm working on a school project and we want to implement a right click pop-up menu in the gui.
Currently we are doing something like creating a JMenu on right click and setting its location to that ...
28
votes
7answers
6k views
How to handle onContextItemSelected in a multi fragment activity
I'm currently try to adapt my application to use the "Compatibility Libraries for Android v4" to provide the benefits of the usage of fragments even to Android 1.6 users.
So far this was possible ...
40
votes
8answers
25k views
Select TreeView Node on right click before displaying ContextMenu
I whould like to select a WPF TreeView Node on right click, right before the ContextMenu displayed.
For WinForms I could use code like this ...
25
votes
4answers
16k views
Configuring jstree right-click contextmenu for different node types
I've seen an example somewhere online showing how to customise the appearance of jstree's right-click context menu (using contextmenu plugin).
For example, allow my users to delete "documents" but ...
12
votes
6answers
15k views
WPF Context menu doesn't bind to right databound item
I have a problem when binding a command in a context menu on a usercontrol that is on a tab page.
The first time I use the menu (right-click on the tab) it works great, but if I switch tab the command ...
10
votes
4answers
5k views
How do you show the Windows Explorer context menu from a C# application?
I have a file listing in my application and I would like to allow people to right-click on an item and show the Windows Explorer context menu. I'm assuming I would need to use the IContextMenu ...
9
votes
2answers
10k views
WPF, UserControl, and Commands? Oh my!
(This question is related to another one, but different enough that I think it warrants placement here.)
Here's a (heavily snipped) Window:
<Window x:Class="Gmd.TimeTracker2.TimeTrackerMainForm"
...
16
votes
5answers
22k views
Right-click context menu for Java JTree?
I'm trying to implement pop-up menus in Java JTree. I've sub-classed DefaultTreeCellRenderer (to change node appearance) and DefaultTreeCellEditor (to create Components to attach event listeners to, ...
15
votes
5answers
13k views
How to disable Ctrl+V (Paste) with jQuery
How can I disable Ctrl+V (Paste) option using jQuery in one of my input text fields....
4
votes
3answers
813 views
Column-specific context menu for Primefaces DataTable
How can I define context menu for each column differently in Primefaces datatable? Putting <p:contextMenu> inside <p:column> does not work properly. I want context menu to be different ...
6
votes
5answers
3k views
Silverlight Datagrid select on right click
Is there a way for a right click event to select a row in toolkit datagrid?
I'm using toolkit context menu which works nicely, but the problem is, only left click is able to select rows, and I need ...
4
votes
3answers
9k views
wpf listview right-click problem
so I have attached a context menu (right-click menu) to a wpf listview.
unfortunately, when you right-click it brings up both the menu and selects whatever item you are over. Is there a way to shut ...
3
votes
1answer
2k views
Context Menu on Android WebView
I'd like to add a context menu on an entire Android WebView. I have the following code:
registerForContextMenu(findViewById(R.id.webview));
...
public void onCreateContextMenu (ContextMenu menu, View ...
2
votes
3answers
2k views
Adding a TrackBar control to a ContextMenu
Is it possible to add a TrackBar control to a ContextMenu? So when I right click, my ContextMenu will drop down and a TrackBar will appear as a menu item?
18
votes
7answers
7k views
Do any browsers support HTML5's context menu?
Do any browsers support the HTML5 context menu attribute?
9
votes
1answer
12k views
WPF ContextMenu with ItemsSource - how to bind to Command in each item? [duplicate]
Possible Duplicate:
Specify Command for MenuItem in a DataTemplate
I have a collection of objects (viewmodels) that represent menu items. Each of them have a command that I would like to ...
7
votes
3answers
3k views
Get owner of context menu in code
I have a ContextMenu like this:
<StackPanel Orientation="Horizontal">
<StackPanel.ContextMenu>
<ContextMenu>
<MenuItem Header="Delete" ...
6
votes
2answers
1k views
Showing windows (file/directory) context menu in c# winforms application
I'm trying to display standard file/directory context menu in WinForms application - I'd like to enable the user to do things with files in my application as he could in Explorer.
There should be ...
3
votes
1answer
445 views
How to access a control from a ContextMenu menuitem via the visual tree?
This seems to be a pretty popular topic, but...
I have the following XAML:
<internal:MyCommandObject x:Name="CommandModel"/>
<Button DockPanel.Dock="Bottom" Command="{Binding DoAction, ...
3
votes
2answers
3k views
jQuery Context Menu clashes with jQuery Draggable
I'm trying the jQuery Context Menu with jQuery Draggable rows in a jQGrid.
The problem I'm having is that since I added the jQuery Context Menu the draggable action is triggered on single click (as ...
2
votes
1answer
7k views
Create contextmenus for datagrid rows
I have a datagrid that potentially can have many rows. As the user right clicks one of the rows, I need to show a context menu for each of the rows and perform an action (same action but different ...
1
vote
1answer
450 views
.NET Multiple ToolStripButtons in a single ContextMenuItem
I'm trying to create a ContextMenu where some items in the menu contain more than a single item. You could see it as trying to combine a ToolStrip and ContextMenuItem.
I've tried using a ...
1
vote
3answers
2k views
Right click with SendKeys in .NET
I am using sendkeys in C# .NET. I have letters, arrow keys and enter working. I cant figure out how to send a right click for the context menu. I know i can press a key on my keyboard to do it but i ...
0
votes
1answer
1k views
WPF Transparent menu
I currently have the following menu:
<Menu Grid.Row="1" Margin="3" Background="Transparent">
<MenuItem Name="mnuFile" Header="File" Background="#28FFAE04" ...
4
votes
1answer
2k views
chrome extension context menus, how to display a menu item only when there is no selection?
What I want to do is:
if the user does not select anything, display menu item A;
if the user selects something, display menu item B.
So far what I can get is:
if the user does not select anything, ...
