Opened 9 years ago
Closed 9 years ago
#10433 closed bug (invalid)
iconselectmenu('open') can't navigate with cursor in popup
Reported by: | bugtester | Owned by: | bugtester |
---|---|---|---|
Priority: | minor | Milestone: | none |
Component: | ui.selectmenu | Version: | 1.11.0 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
My cursor is in a input (type=text). When I press the tabulator-key I will open a specific select. I tried this:
$('.selector').iconselectmenu('open');
Its working fine and open the popup and input have lost focus, BUT I can't use cursor to navigate in the open popup of selectbox.
---
When I click on selectbox the popup is open and I can navigate with cursors. Is this a bug or something missing in my code?
---
I have tried:
$('.selector').iconselectmenu('open').focus(); $('.selector').iconselectmenu('open').iconselectmenu('focus'); no such method 'focus' for iconselectmenu widget instance $('.selector').iconselectmenu('open').selectmenu('focus'); cannot call methods on selectmenu prior to initialization; attempted to call method 'focus'
---
Select was successfully created with:
$('.selector').iconselectmenu().iconselectmenu('menuWidget').addClass('ui-menu-icons customicons');
Change History (3)
comment:2 Changed 9 years ago by
Owner: | set to bugtester |
---|---|
Status: | new → pending |
Can you please provide a reduced test case using jsFiddle to more clearly show the behavior you're describing?
comment:3 Changed 9 years ago by
Resolution: | → invalid |
---|---|
Status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
Workaround:
e.preventDefault(); $('#combo-button').click(); $('#combo-button').focus();