Completed
Last Updated: 28 Jul 2023 13:00 by ADMIN
Nathaniel
Created on: 18 Apr 2019 05:29
Category: KendoReact
Type: Bug Report
0
DropDownList and MulstiSelect do not open on click(IE 11)

DropDownList and MulstiSelect do not open on click(IE 11). 

They do open sometimes, but it seems random.

They do open when using the keyboard.


2 comments
ADMIN
Stefan
Posted on: 19 Apr 2019 07:10
Hello, Nathaniel,

Thank you for the additional information.

We can assume that on IE 11 the label is "stealing" the focus on click forcing the DropDown line components to immediately close.

Also, could you please share if using span with the same styles will be a possible workaround in this case?

Regards,
Stefan
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Nathaniel
Posted on: 18 Apr 2019 11:48

I got this to happen by putting the ComboBox inside a <label> element, e.g.

<label className="form-label">
    Please select:
    <ComboBox className="form-control" data={['alpha', 'bravo', 'charlie']} />
</label>