menu or popumenu clickright in combobox choice?2019 Community Moderator ElectionBinding a WPF ComboBox to a custom listwxPython ListCtrl Column Ignores Specific FieldsComboBox: Adding Text and Value to an Item (no Binding Source)Adding an AuiToolbar causes “expected argument 3 type int”How to display a combobox based on a selection from another comboboxhow to reset choices of a combobox in real time using wxpython?wxpython - Erase background erases non-background componentspopulate filtered choices in combobox using wxpythonCombobox dropdown choice freezingReturn combo box choices as a parameters in wxpython
Could you please stop shuffling the deck and play already?
Intuition behind counterexample of Euler's sum of powers conjecture
Was Luke Skywalker the leader of the Rebel forces on Hoth?
Why doesn't this Google Translate ad use the word "Translation" instead of "Translate"?
Accepted offer letter, position changed
Why was Goose renamed from Chewie for the Captain Marvel film?
How to draw cubes in a 3 dimensional plane
When a wind turbine does not produce enough electricity how does the power company compensate for the loss?
How strictly should I take "Candidates must be local"?
Was it really inappropriate to write a pull request for the company I interviewed with?
What official source details what an Empire citizen knows of WFRP's monsters?
Is there a difference between equilibrium and steady state?
meaning and function of 幸 in "则幸分我一杯羹"
How can I ensure my trip to the UK will not have to be cancelled because of Brexit?
Child Theme Path Being Ignored With wp_enqueue_scripts
Do items de-spawn in Diablo?
Find longest word in a string: are any of these algorithms good?
What problems would a superhuman have whose skin is constantly hot?
They call me Inspector Morse
How to build and install Python 3.7.x from source on Debian 9.8
List elements digit difference sort
Sort with one element at the end
Why the color red for the Republican Party
Should I tell my boss the work he did was worthless
menu or popumenu clickright in combobox choice?
2019 Community Moderator ElectionBinding a WPF ComboBox to a custom listwxPython ListCtrl Column Ignores Specific FieldsComboBox: Adding Text and Value to an Item (no Binding Source)Adding an AuiToolbar causes “expected argument 3 type int”How to display a combobox based on a selection from another comboboxhow to reset choices of a combobox in real time using wxpython?wxpython - Erase background erases non-background componentspopulate filtered choices in combobox using wxpythonCombobox dropdown choice freezingReturn combo box choices as a parameters in wxpython
i have first list ( visible, Infrarouge, simulation) in my combobox and i need to create list 2 ( VIS04,VIS05,VIS06,ir039,IR087,IR103,SIM1,SIM2,SIM2) like when i click right in visible i'will have like menu with : VIS04,VIS05,VIS06
and the same for infrarouge and simulation like the image description :
enter image description here
enter image description here
how can i have the menu like image description when i clik right with mouse in visible or other choice in combobox i have menu with list choice ? or all other suggestion possibl
i use wxpython in python3
this is part of my code :
class MainPanel(wx.Panel):
def __init__(self, parent):
super().__init__(parent)
wx.Frame.__init__(self, parent,size = (250,250))
self.splitter = wx.SplitterWindow(self, -1, size = (500,500))
#panelone
pan1 =wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
pan1.SetBackgroundColour("white")
#paneltwo
pan2 = wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
pan2.SetBackgroundColour("white")
#combobox
List1 = ['Infra', 'Vis','simulat']
combobox = wx.ComboBox(pan2, id=wx.ID_ANY, choices = List1, style=wx.CB_DROPDOWN,pos=(80,5))
some help or exemple please
i'm new in wxpython
thank u
python-3.x combobox menu wxpython
add a comment |
i have first list ( visible, Infrarouge, simulation) in my combobox and i need to create list 2 ( VIS04,VIS05,VIS06,ir039,IR087,IR103,SIM1,SIM2,SIM2) like when i click right in visible i'will have like menu with : VIS04,VIS05,VIS06
and the same for infrarouge and simulation like the image description :
enter image description here
enter image description here
how can i have the menu like image description when i clik right with mouse in visible or other choice in combobox i have menu with list choice ? or all other suggestion possibl
i use wxpython in python3
this is part of my code :
class MainPanel(wx.Panel):
def __init__(self, parent):
super().__init__(parent)
wx.Frame.__init__(self, parent,size = (250,250))
self.splitter = wx.SplitterWindow(self, -1, size = (500,500))
#panelone
pan1 =wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
pan1.SetBackgroundColour("white")
#paneltwo
pan2 = wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
pan2.SetBackgroundColour("white")
#combobox
List1 = ['Infra', 'Vis','simulat']
combobox = wx.ComboBox(pan2, id=wx.ID_ANY, choices = List1, style=wx.CB_DROPDOWN,pos=(80,5))
some help or exemple please
i'm new in wxpython
thank u
python-3.x combobox menu wxpython
add a comment |
i have first list ( visible, Infrarouge, simulation) in my combobox and i need to create list 2 ( VIS04,VIS05,VIS06,ir039,IR087,IR103,SIM1,SIM2,SIM2) like when i click right in visible i'will have like menu with : VIS04,VIS05,VIS06
and the same for infrarouge and simulation like the image description :
enter image description here
enter image description here
how can i have the menu like image description when i clik right with mouse in visible or other choice in combobox i have menu with list choice ? or all other suggestion possibl
i use wxpython in python3
this is part of my code :
class MainPanel(wx.Panel):
def __init__(self, parent):
super().__init__(parent)
wx.Frame.__init__(self, parent,size = (250,250))
self.splitter = wx.SplitterWindow(self, -1, size = (500,500))
#panelone
pan1 =wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
pan1.SetBackgroundColour("white")
#paneltwo
pan2 = wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
pan2.SetBackgroundColour("white")
#combobox
List1 = ['Infra', 'Vis','simulat']
combobox = wx.ComboBox(pan2, id=wx.ID_ANY, choices = List1, style=wx.CB_DROPDOWN,pos=(80,5))
some help or exemple please
i'm new in wxpython
thank u
python-3.x combobox menu wxpython
i have first list ( visible, Infrarouge, simulation) in my combobox and i need to create list 2 ( VIS04,VIS05,VIS06,ir039,IR087,IR103,SIM1,SIM2,SIM2) like when i click right in visible i'will have like menu with : VIS04,VIS05,VIS06
and the same for infrarouge and simulation like the image description :
enter image description here
enter image description here
how can i have the menu like image description when i clik right with mouse in visible or other choice in combobox i have menu with list choice ? or all other suggestion possibl
i use wxpython in python3
this is part of my code :
class MainPanel(wx.Panel):
def __init__(self, parent):
super().__init__(parent)
wx.Frame.__init__(self, parent,size = (250,250))
self.splitter = wx.SplitterWindow(self, -1, size = (500,500))
#panelone
pan1 =wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
pan1.SetBackgroundColour("white")
#paneltwo
pan2 = wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
pan2.SetBackgroundColour("white")
#combobox
List1 = ['Infra', 'Vis','simulat']
combobox = wx.ComboBox(pan2, id=wx.ID_ANY, choices = List1, style=wx.CB_DROPDOWN,pos=(80,5))
some help or exemple please
i'm new in wxpython
thank u
python-3.x combobox menu wxpython
python-3.x combobox menu wxpython
edited Mar 8 at 14:20
Tiera Eyek
asked Mar 6 at 14:24
Tiera EyekTiera Eyek
93
93
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Your question and code refer to wx.ComboBox and yet your image examples are popup menus. I assume that you are trying to achieve something like this:
import wx
class myPanel(wx.Frame):
def __init__(self, *args, **kwds):
wx.Frame.__init__(self, *args, **kwds)
self.panel = wx.Panel(self)
text = wx.StaticText(self.panel, -1, "Right click on this panel for a popup menu")
self.Bind(wx.EVT_CONTEXT_MENU, self.ShowPopup)
self.Show()
def ShowPopup(self, event):
popmenu = wx.Menu()
visible = wx.Menu()
visible.Append( -1, "VIS04")
visible.Append( -1, "VIS05")
visible.Append( -1, "VIS06")
visible.Append( -1, "VIS07")
popmenu.Append( -1, "Visible", visible)
infrared = wx.Menu()
infrared.Append( -1, "IR04")
infrared.Append( -1, "IR05")
infrared.Append( -1, "IR06")
infrared.Append( -1, "IR07")
popmenu.Append( -1, "Infrared", infrared)
simulation = wx.Menu()
simulation.Append( -1, "SIM04")
simulation.Append( -1, "SIM05")
simulation.Append( -1, "SIM06")
simulation.Append( -1, "SIM07")
popmenu.Append( -1, "Simulation", simulation)
self.Bind(wx.EVT_MENU, self.OnChoice)
self.PopupMenu(popmenu)
popmenu.Destroy()
def OnChoice(self, event):
id = event.GetId()
obj = event.GetEventObject()
print("Option chosen",obj.GetLabelText(id))
if __name__ == '__main__':
app = wx.App()
myPanel(None)
app.MainLoop()

Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically saidcomboboxand you coded withwx.ComboBoxand yet you link to a picture of amenuitem
– Rolf of Saxony
Mar 7 at 17:31
@ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all
– Tiera Eyek
Mar 7 at 19:45
@TieraEyek to be clear, do you mean a popup menu?
– Rolf of Saxony
Mar 8 at 10:37
@ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik
– Tiera Eyek
Mar 8 at 12:04
yes that what i need but why can i do that for my combobox is impossible ? thank u for help
– Tiera Eyek
2 days ago
|
show 2 more comments
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55025359%2fmenu-or-popumenu-clickright-in-combobox-choice%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your question and code refer to wx.ComboBox and yet your image examples are popup menus. I assume that you are trying to achieve something like this:
import wx
class myPanel(wx.Frame):
def __init__(self, *args, **kwds):
wx.Frame.__init__(self, *args, **kwds)
self.panel = wx.Panel(self)
text = wx.StaticText(self.panel, -1, "Right click on this panel for a popup menu")
self.Bind(wx.EVT_CONTEXT_MENU, self.ShowPopup)
self.Show()
def ShowPopup(self, event):
popmenu = wx.Menu()
visible = wx.Menu()
visible.Append( -1, "VIS04")
visible.Append( -1, "VIS05")
visible.Append( -1, "VIS06")
visible.Append( -1, "VIS07")
popmenu.Append( -1, "Visible", visible)
infrared = wx.Menu()
infrared.Append( -1, "IR04")
infrared.Append( -1, "IR05")
infrared.Append( -1, "IR06")
infrared.Append( -1, "IR07")
popmenu.Append( -1, "Infrared", infrared)
simulation = wx.Menu()
simulation.Append( -1, "SIM04")
simulation.Append( -1, "SIM05")
simulation.Append( -1, "SIM06")
simulation.Append( -1, "SIM07")
popmenu.Append( -1, "Simulation", simulation)
self.Bind(wx.EVT_MENU, self.OnChoice)
self.PopupMenu(popmenu)
popmenu.Destroy()
def OnChoice(self, event):
id = event.GetId()
obj = event.GetEventObject()
print("Option chosen",obj.GetLabelText(id))
if __name__ == '__main__':
app = wx.App()
myPanel(None)
app.MainLoop()

Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically saidcomboboxand you coded withwx.ComboBoxand yet you link to a picture of amenuitem
– Rolf of Saxony
Mar 7 at 17:31
@ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all
– Tiera Eyek
Mar 7 at 19:45
@TieraEyek to be clear, do you mean a popup menu?
– Rolf of Saxony
Mar 8 at 10:37
@ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik
– Tiera Eyek
Mar 8 at 12:04
yes that what i need but why can i do that for my combobox is impossible ? thank u for help
– Tiera Eyek
2 days ago
|
show 2 more comments
Your question and code refer to wx.ComboBox and yet your image examples are popup menus. I assume that you are trying to achieve something like this:
import wx
class myPanel(wx.Frame):
def __init__(self, *args, **kwds):
wx.Frame.__init__(self, *args, **kwds)
self.panel = wx.Panel(self)
text = wx.StaticText(self.panel, -1, "Right click on this panel for a popup menu")
self.Bind(wx.EVT_CONTEXT_MENU, self.ShowPopup)
self.Show()
def ShowPopup(self, event):
popmenu = wx.Menu()
visible = wx.Menu()
visible.Append( -1, "VIS04")
visible.Append( -1, "VIS05")
visible.Append( -1, "VIS06")
visible.Append( -1, "VIS07")
popmenu.Append( -1, "Visible", visible)
infrared = wx.Menu()
infrared.Append( -1, "IR04")
infrared.Append( -1, "IR05")
infrared.Append( -1, "IR06")
infrared.Append( -1, "IR07")
popmenu.Append( -1, "Infrared", infrared)
simulation = wx.Menu()
simulation.Append( -1, "SIM04")
simulation.Append( -1, "SIM05")
simulation.Append( -1, "SIM06")
simulation.Append( -1, "SIM07")
popmenu.Append( -1, "Simulation", simulation)
self.Bind(wx.EVT_MENU, self.OnChoice)
self.PopupMenu(popmenu)
popmenu.Destroy()
def OnChoice(self, event):
id = event.GetId()
obj = event.GetEventObject()
print("Option chosen",obj.GetLabelText(id))
if __name__ == '__main__':
app = wx.App()
myPanel(None)
app.MainLoop()

Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically saidcomboboxand you coded withwx.ComboBoxand yet you link to a picture of amenuitem
– Rolf of Saxony
Mar 7 at 17:31
@ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all
– Tiera Eyek
Mar 7 at 19:45
@TieraEyek to be clear, do you mean a popup menu?
– Rolf of Saxony
Mar 8 at 10:37
@ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik
– Tiera Eyek
Mar 8 at 12:04
yes that what i need but why can i do that for my combobox is impossible ? thank u for help
– Tiera Eyek
2 days ago
|
show 2 more comments
Your question and code refer to wx.ComboBox and yet your image examples are popup menus. I assume that you are trying to achieve something like this:
import wx
class myPanel(wx.Frame):
def __init__(self, *args, **kwds):
wx.Frame.__init__(self, *args, **kwds)
self.panel = wx.Panel(self)
text = wx.StaticText(self.panel, -1, "Right click on this panel for a popup menu")
self.Bind(wx.EVT_CONTEXT_MENU, self.ShowPopup)
self.Show()
def ShowPopup(self, event):
popmenu = wx.Menu()
visible = wx.Menu()
visible.Append( -1, "VIS04")
visible.Append( -1, "VIS05")
visible.Append( -1, "VIS06")
visible.Append( -1, "VIS07")
popmenu.Append( -1, "Visible", visible)
infrared = wx.Menu()
infrared.Append( -1, "IR04")
infrared.Append( -1, "IR05")
infrared.Append( -1, "IR06")
infrared.Append( -1, "IR07")
popmenu.Append( -1, "Infrared", infrared)
simulation = wx.Menu()
simulation.Append( -1, "SIM04")
simulation.Append( -1, "SIM05")
simulation.Append( -1, "SIM06")
simulation.Append( -1, "SIM07")
popmenu.Append( -1, "Simulation", simulation)
self.Bind(wx.EVT_MENU, self.OnChoice)
self.PopupMenu(popmenu)
popmenu.Destroy()
def OnChoice(self, event):
id = event.GetId()
obj = event.GetEventObject()
print("Option chosen",obj.GetLabelText(id))
if __name__ == '__main__':
app = wx.App()
myPanel(None)
app.MainLoop()

Your question and code refer to wx.ComboBox and yet your image examples are popup menus. I assume that you are trying to achieve something like this:
import wx
class myPanel(wx.Frame):
def __init__(self, *args, **kwds):
wx.Frame.__init__(self, *args, **kwds)
self.panel = wx.Panel(self)
text = wx.StaticText(self.panel, -1, "Right click on this panel for a popup menu")
self.Bind(wx.EVT_CONTEXT_MENU, self.ShowPopup)
self.Show()
def ShowPopup(self, event):
popmenu = wx.Menu()
visible = wx.Menu()
visible.Append( -1, "VIS04")
visible.Append( -1, "VIS05")
visible.Append( -1, "VIS06")
visible.Append( -1, "VIS07")
popmenu.Append( -1, "Visible", visible)
infrared = wx.Menu()
infrared.Append( -1, "IR04")
infrared.Append( -1, "IR05")
infrared.Append( -1, "IR06")
infrared.Append( -1, "IR07")
popmenu.Append( -1, "Infrared", infrared)
simulation = wx.Menu()
simulation.Append( -1, "SIM04")
simulation.Append( -1, "SIM05")
simulation.Append( -1, "SIM06")
simulation.Append( -1, "SIM07")
popmenu.Append( -1, "Simulation", simulation)
self.Bind(wx.EVT_MENU, self.OnChoice)
self.PopupMenu(popmenu)
popmenu.Destroy()
def OnChoice(self, event):
id = event.GetId()
obj = event.GetEventObject()
print("Option chosen",obj.GetLabelText(id))
if __name__ == '__main__':
app = wx.App()
myPanel(None)
app.MainLoop()

edited 2 days ago
answered Mar 6 at 16:17
Rolf of SaxonyRolf of Saxony
9,19521737
9,19521737
Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically saidcomboboxand you coded withwx.ComboBoxand yet you link to a picture of amenuitem
– Rolf of Saxony
Mar 7 at 17:31
@ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all
– Tiera Eyek
Mar 7 at 19:45
@TieraEyek to be clear, do you mean a popup menu?
– Rolf of Saxony
Mar 8 at 10:37
@ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik
– Tiera Eyek
Mar 8 at 12:04
yes that what i need but why can i do that for my combobox is impossible ? thank u for help
– Tiera Eyek
2 days ago
|
show 2 more comments
Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically saidcomboboxand you coded withwx.ComboBoxand yet you link to a picture of amenuitem
– Rolf of Saxony
Mar 7 at 17:31
@ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all
– Tiera Eyek
Mar 7 at 19:45
@TieraEyek to be clear, do you mean a popup menu?
– Rolf of Saxony
Mar 8 at 10:37
@ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik
– Tiera Eyek
Mar 8 at 12:04
yes that what i need but why can i do that for my combobox is impossible ? thank u for help
– Tiera Eyek
2 days ago
Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically said
combobox and you coded with wx.ComboBox and yet you link to a picture of a menu item– Rolf of Saxony
Mar 7 at 17:31
Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically said
combobox and you coded with wx.ComboBox and yet you link to a picture of a menu item– Rolf of Saxony
Mar 7 at 17:31
@ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all
– Tiera Eyek
Mar 7 at 19:45
@ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all
– Tiera Eyek
Mar 7 at 19:45
@TieraEyek to be clear, do you mean a popup menu?
– Rolf of Saxony
Mar 8 at 10:37
@TieraEyek to be clear, do you mean a popup menu?
– Rolf of Saxony
Mar 8 at 10:37
@ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik
– Tiera Eyek
Mar 8 at 12:04
@ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik
– Tiera Eyek
Mar 8 at 12:04
yes that what i need but why can i do that for my combobox is impossible ? thank u for help
– Tiera Eyek
2 days ago
yes that what i need but why can i do that for my combobox is impossible ? thank u for help
– Tiera Eyek
2 days ago
|
show 2 more comments
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55025359%2fmenu-or-popumenu-clickright-in-combobox-choice%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown