Modify

Ticket #469 (closed defect: fixed)

Opened 10 months ago

Last modified 10 months ago

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

comment:1 Changed 10 months ago by sdm

  • Status changed from new to closed
  • Resolution set to fixed

In [1923]:

combobox.js: call show() after select() (fixes #469)
combobox.css: always remove margin around combobox input element to avoid whitespace between the input field and the tr border

View

Add a comment

Modify Ticket

Action
as closed
The resolution will be deleted. Next status will be 'reopened'
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.