Questions tagged [custom-contextmenu]

Context menu is a menu in a graphical user interface (GUI) that appears upon user interaction, such as a right-click mouse operation.Custom context menu refers to the menus created for a specific purpose.

26 questions
10
votes
2 answers

Adding a context menu item in Windows for a specific file extension

I am trying to add a context menu item to a DLL file. The reason is that I have written an application which retracts and deployed a managed DLL file to the GAC. The application is all good, but now I want the ability to right-click a DLL and just…
Albert Herd
  • 433
  • 1
  • 7
  • 13
9
votes
3 answers

Custom Qt QMenu

Is there a way in Qt to add a layout or widgets to a QMenu to create a custom menu? The example below (left) is what I have, and I'd like to aim for something similar to the mock-up on the right, by adding non-menu widgets. If it can't be done by…
Kver
  • 767
  • 5
  • 19
4
votes
2 answers

How to add custimized context menu item on right click in browser window?

Here I want to add my custom menu option i.e. ColorZilla, Aptana Studio on web browser right click
Yashwant Kumar Sahu
  • 3,356
  • 7
  • 27
  • 42
3
votes
0 answers

Customise windows 11 context menu

I want to add an option in windows 11 context menu but not in show more option submenu , it should added to the main context menu . I don't want to use the classic windows 10 context menu. I tried with adding registry key reg add…
indu
  • 31
  • 1
2
votes
1 answer

ContextMenuConfiguration for User Images?

I want the image of users to popup (without action option) and then be dismissed if touched outside. Say table view consist of 2 UI elements (a button and a text) and one picture. How would you set the pop up context menu for only the picture -…
2
votes
1 answer

showing contextual action bar at other position

I am using a gridview of photos. Long pressing a photo will start to count the number of selected photos. Coding as follows: Coding: gd_view.setMultiChoiceModeListener(new AbsListView.MultiChoiceModeListener() { …
pearmak
  • 4,979
  • 15
  • 64
  • 122
2
votes
2 answers

How can i allow selected cell text to be bold when click contextMenu 'Bold' in Handsontable

I am working on handsontable.js with jquery latest version. I want to add new features to add on handsontalbe contextMenu bold and normal text. I have add these both menu option in contextMenu. But how can i make all selected cell text bold and…
2
votes
0 answers

Jquery context menu move caret

I'm trying to make custom context menu to insert images links to textarea. The problem is, when I right click to textarea, caret is not moving to the point where i clicked: jQuery.fn.extend({ insertAtCaret: function(myValue) { return…
2
votes
1 answer

How to implement different contextual-menus in a NSOutlineView

I have a view-based NSOutlineView and want to show different contextual menus if user right-clicks the header or one of the expanded items. I dropped two NSMenu's to the storyboard file. When I connect the menu outlet of the HeaderCell to one of the…
2
votes
1 answer

Common Context Menu at application level

I have a very huge business application that contains almost all types of controls + third party controls. Now I have a requirement where I have to open a Form on "ctrl + double click" on any control(grid, cell, row, treenode, button, etc..…
1
vote
0 answers

How to open Modal Dialog from ag-grid with Context Menu Customize

I found a problem in the code. I'm trying to make menu customizations in the Angular ag-grid by right clicking on a cell then displaying menu customizations such as view details, edit data, and delete. when I click edit, the component dialog appears…
1
vote
1 answer

Create Custom Context menu

I want to create a custom context menu . can any one provide me a good example ? Thanks in advance.
Chirag
  • 56,621
  • 29
  • 151
  • 198
1
vote
0 answers

I can't see Object Explorer in SSMS 2012

I'm writing an Addin for SSMS 2012 to create a custom Object Explorer tree context menu , unfortunately after I execute the code, the object explorer disappears and I can't show it even if i press on F8. the code: public void OnConnection(object…
0
votes
0 answers

How can I detect the control from which a context menu is open and clicked?

I have a context menu control that is associated to different controls on the same form. However the programmatic actions behind the context menu are not the same for the controls associated to the context menu. My problem is how to detect the…
bek
  • 1
  • 1
0
votes
1 answer

How to the edit the Right-click context menu using JavaScript

I want to edit the context menu. When I select any text and Press the right button then this will show up. enter image description here I want to edit this context menu. And add the new item into this. And the exsisting buttons will be same. In that…
1
2