In IE, the drop-down list upon a mouse-click flickers real fast , as if the drop-down window is opening and closing almost instantly, basically forcing the user to click inside the container twice to display the list of items. Again this only appears to happen in IE, Firefox and Crrome seem to be working fine.
Is this a known issue or am I the first to report this?
6 Answers, 1 is accepted
I can't seem to reproduce such a problem on our online demos. Can you?
http://demos.kendoui.com/web/multiselect/index.html
If the online demo works OK on your side too, please provide a runnable example for additional testing, and specify which IE version you are using.
Regards,
Dimo
the Telerik team
I am using IE9 and this behavior is not there in Chrome. For your reference, I am pasting the code below.
@(Html.Kendo().DropDownList()
.Name("LSource")
.DataTextField("Description")
.DataValueField("LSource")
.OptionLabel("NONE")
.Events(e => e.Select("onLSourceSelect"))
.BindTo(ViewBag.LSources)
)
Any help is appreciated.
@(Html.Kendo().DropDownList()
.Name("size")
.BindTo(new List<string>() {
"S - 6 3/4\"",
"M - 7 1/4\"",
"L - 7 1/8\"",
"XL - 7 5/8\""
})
This also has the flickering issue.
Please help
Hello Rajeev,
Can you please send us a runnable sample that reproduces the issue in a separate support thread? We will be happy to take a look and assist you!
Regards,Kiril Nikolov
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.
Sirs,
I am experiencing the same issue in IE10 using a @Kendo(). DropdownListFor controls. I have about 5 in a App and they are all doing the same "Flicker: action spoken of by other posters. However, mine do not even work if you click them twice. Between the "Flicker" you can see that there is data in them. Also they work fine in Chrome. I have not seen a resolution the the issue posted. Has there been one? The control below is being feed from a Web Service. Others are feed from Database Key value pairs. So the data model does not seem the be the problem. Could this be a Script or Script reference issue? I managed to get a screen shot of the control as it is open for a split second I don't know that it shows much but it is attached.
@(Html.Kendo().DropDownListFor(model => model.Agency)
.Name("Agency")
.OptionLabel("Select an Agency....")
.HtmlAttributes(new {style = "width: 350px"})
.DataTextField("code")
.DataValueField("code")
.Filter("contains")
.DataSource(source =>
{
source.Read(read =>
{
read.Action("agencies_read", "IOTDBBillingAdmin");
}).ServerFiltering(false);
})
.Events(e => e.Change("onAgencyChange"))
)
Hello Tim,
Please open a separate support request and include a runnable sample, where the issue can be reproduced and we will be happy to help.
Thanks for the cooperation.
Regards,Kiril Nikolov
Telerik
See What's Next in App Development. Register for TelerikNEXT.