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
Doesn't allowing a user mode program to access kernel space memory and execute the IN and OUT instructions defeat the purpose of having CPU modes?
What is better: yes / no radio, or simple checkbox?
Why restrict private health insurance?
Street obstacles in New Zealand
Finitely many repeated replacements
Recommendation letter by significant other if you worked with them professionally?
School performs periodic password audits. Is my password compromised?
Specifying a starting column with colortbl package and xcolor
When Schnorr signatures are part of Bitcoin will it be possible validate each block with only one signature validation?
Why is there an extra space when I type "ls" in the Desktop directory?
Can the alpha, lambda values of a glmnet object output determine whether ridge or Lasso?
What ability score modifier does a javelin's damage use?
I can't die. Who am I?
Getting the || sign while using Kurier
How can I find out information about a service?
What do you call someone who likes to pick fights?
Doubts in understanding some concepts of potential energy
Is a piano played in the same way as a harmonium?
Shifting between bemols and diesis in the key signature
Proving a statement about real numbers
Why does Solve lock up when trying to solve the quadratic equation with large integers?
What's the 'present simple' form of the word "нашла́" in 3rd person singular female?
Giving a career talk in my old university, how prominently should I tell students my salary?
What problems would a superhuman have who's skin is constantly hot?
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 2 days ago
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 saidcombobox
and you coded withwx.ComboBox
and yet you link to a picture of amenu
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
@TieraEyek to be clear, do you mean a popup menu?
– Rolf of Saxony
2 days ago
@ 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
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
yesterday
|
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 saidcombobox
and you coded withwx.ComboBox
and yet you link to a picture of amenu
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
@TieraEyek to be clear, do you mean a popup menu?
– Rolf of Saxony
2 days ago
@ 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
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
yesterday
|
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 saidcombobox
and you coded withwx.ComboBox
and yet you link to a picture of amenu
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
@TieraEyek to be clear, do you mean a popup menu?
– Rolf of Saxony
2 days ago
@ 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
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
yesterday
|
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 yesterday
answered Mar 6 at 16:17
Rolf of SaxonyRolf of Saxony
9,17021737
9,17021737
Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically saidcombobox
and you coded withwx.ComboBox
and yet you link to a picture of amenu
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
@TieraEyek to be clear, do you mean a popup menu?
– Rolf of Saxony
2 days ago
@ 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
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
yesterday
|
show 2 more comments
Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically saidcombobox
and you coded withwx.ComboBox
and yet you link to a picture of amenu
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
@TieraEyek to be clear, do you mean a popup menu?
– Rolf of Saxony
2 days ago
@ 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
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
yesterday
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
2 days ago
@TieraEyek to be clear, do you mean a popup menu?
– Rolf of Saxony
2 days ago
@ 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
2 days ago
@ 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
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
yesterday
yes that what i need but why can i do that for my combobox is impossible ? thank u for help
– Tiera Eyek
yesterday
|
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