Modify ↓
Ticket #469 (closed defect: fixed)
Combobox dropdown not shown in IE
| Reported by: | sdm | Owned by: | mpo |
|---|---|---|---|
| Priority: | major | Milestone: | 0.4 |
| Component: | modules/kauri-forms | Version: | |
| Keywords: | Cc: |
Description
This can be reproduced by running the combobox sample page.
When you click the combobox dropdown button, the dropdownlist of options is never shown. This does work in FF and Chrome.
This problem can be solved by changing the order of the method calls:
show() should be called after select()
//ComboboxControl.prototype.initContainerElements :
$comboboxControl.find('.combo-down-btn').click(function () {
$comboboxInput.select();
$comboboxValues.show();
$comboboxControl.focus();
});
Attachments
Change History
Note: See
TracTickets for help on using
tickets.
In [1923]: