Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
3k views

Java Swing JTable; Right Click Menu (How do I get it to “select” aka highlight the row)

Short: I need a "right-click event" to highlight the cell row. I am using a JTable inside a ScrollPane in Java Swing (Netbeans Matisse). I have a MouseClicked event listener on the JTable that ...
3
votes
1answer
237 views

WPF ContextMenu using (Shift-Right-Click)

I have a question with the "ContextMenu" in WPF. Is there a way to have the context menu pop up only if a "Shift-Right-Click" was performed?? I have been looking all over the place for this. The ...
2
votes
1answer
47 views

Use javascript to prevent context menu on CTRL+Leftclick

I am trying to allow my CMS users to click certain controls with ALT+CTRL both pressed, but this results in the context menu being shown, because CTRL+Leftclick simulates a rightclick, at least here ...
2
votes
1answer
700 views

What is the list of valid GWT DOM / consumed events for Cells?

I've run into this multiple times, and can't find anything comprehensive. I want to know the complete list of all valid consumable DOM events for GWT. The GWT docs for NativeEvent says: public ...
2
votes
3answers
2k views

How to disable right-click save on one specific image only

I'm running an Asian e-commerce site where users post images of their products. Is there a way to disable right click for only 1 specific image on the page? E.g. When viewing a product, there is a ...
1
vote
2answers
52 views

jQuery Propagation issue

another silly question, i cant quite figure it out via all the other threads so hopefuly someone here can. a demo is at http://jsfiddle.net/OwenMelbz/PaAt2/ basically ive got it so when click ...
1
vote
2answers
2k views

Java Mouse Event Right Click

On my three button mouse MouseEvent.BUTTON2= Middle Click and MouseEvent.BUTTON3 = Right Click. Is this the case on a two button mouse? Thanks
0
votes
1answer
19 views

Add Scan with option in right click menu

I am making AV as my college project and want to add option of SCAN WITH in right click menu.For that i need to add another form specially to be called when user selects that option.How to add another ...
0
votes
0answers
39 views

How To Overlay Image above Embedded pdf

i tried to disable the right click option of embedded pdf on my browser, but the content only works for few web browers, but stucks up in Mozilla. Any help would be appreciated. script starts ...
0
votes
1answer
221 views

Xamdatagrid howto get the current Cell on right click

here is the scenario I want ta achieve on some XamDataGrid Some Cells may be selected in the grid - cells and not records User right clicks on a cell in the grid I would like to add the right ...
0
votes
0answers
282 views

Flex 4.5 handle right click and generate custom menu

function onNsRightClick(e) { if(e.which == 3) { Application.openRightClick(); if (e.stopPropagation) { e.stopPropagation(); } if ...
0
votes
3answers
106 views

Disable RightClick on every tag except textarea and textfield

I found this cross browser script <script language=JavaScript> <!-- var message="Function Disabled!"; function clickIE4(){ if (event.button==2){ alert(message); return ...
0
votes
2answers
74 views

How to set a icon for this right click menu?

I can add a new item for the folders right click menu using registry: HKEY_CLASSES_ROOT\folder\shell\Your item name But i don't know how to set a icon for created item like this : May ...
0
votes
1answer
580 views

Jquery right click, no contextmenu, live and all browser

i need i nice solution to manage the left-& rightclick on a div with a special class (live). It is important for me that the code works on every new browser. Hope somebody can help me. My ...
0
votes
3answers
272 views

How to add / Modify Right Click options in a webpage

I want to change right click values which clicking on a particular item on a WebPage and make right click values to functioning. I am a PHP developer.. Kindly see the image below ...
0
votes
1answer
137 views

Creating RightClick Menu for Explorer

If some one can provide some sample articles on how to create Right Click Menu for Drives. Here is what needed: The right click menu will contain two additional things, i.e: Connect and Disconnect. ...
0
votes
1answer
399 views

why “event is undefined” when rightclick on google-map-v3

this is my code: google.maps.event.addListener(marker, 'rightclick', function(event) { //delete marker var nowIndex1='nowIndex1'; function callback1(element, index){ if(marker == ...
0
votes
3answers
183 views

How to detect a rightclick in an application

my objective is to attach a context menu (vista and win7) whenever user right clicks a picture/file. I've got the file portion down (ie, they right click on a file and my menu shows up) but I am ...
0
votes
4answers
146 views

Help getting me started on making a file -> right-click context menu in Vista

I am a novice .Net 2.0 and 3.5 developer. I want to create an application that creates a context menu when a file is right clicked on in Vista. After the right click--I think I can figure out the ...
0
votes
1answer
4k views

Right click on sheet-tabs disabled in Excel

I used this vba code in the ThisWorkbook module to disable the right click menu in an Excel workbook. Private Sub Workbook_Activate() With Application.CommandBars.FindControl(ID:=847) ...
0
votes
3answers
1k views

How to disable right click menu in external launched application

Good day. I have a program thats launches an external application. That external app has a right click sub menu on it which I need to disable. Is it possible (without modifying the external app) to ...
-1
votes
1answer
33 views

C# Context menu delaying events

I'm working on an application which needs a right click menu, I've used a contextMenuStrip for the this, but when the menu is open and I rightclick again my form click events are always one behind so ...