This is a migrated thread and some comments may be shown as answers.

SCRIPT5007: Unable to get value of the property 'nextSibling': object is null or undefined

2 Answers 82 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Ande2013
Top achievements
Rank 1
Ande2013 asked on 27 Jun 2013, 09:10 AM
I have a combo box bound to remote data:

@(Html.Kendo().ComboBox()
.Name("cbUser")
.HtmlAttributes(new { style = "width:350px" })
.DataTextField("DisplayName")
.DataValueField("Guid")
.Filter("contains")
.AutoBind(false)
.MinLength(0)
.DataSource(source => source
.Read(read => read.Action(AdministrationController.GetUsersAction, AdministrationController.Controller))
.ServerFiltering(true))
.Events(e => e.Change("UserSelected"))
)

If I just focus this control (there are no items yet) and hit the up/down keys I get the following javascript errors:

SCRIPT5007: Unable to get value of the property 'previousSibling': object is null or undefined
kendo.all.min.js, line 14 character 15241


2 Answers, 1 is accepted

Sort by
0
Accepted
Georgi Krustev
Telerik team
answered on 27 Jun 2013, 02:46 PM
Hello Andreas,

 
I believe that this issue is already addressed and the fix is included in the latest internal build of Kendo UI. Please download it and give it a try.

Regards,
Georgi Krustev
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Ande2013
Top achievements
Rank 1
answered on 18 Jul 2013, 04:15 PM
Yes, it is fixed in the 2013 Q2 release. Thanks.
Tags
ComboBox
Asked by
Ande2013
Top achievements
Rank 1
Answers by
Georgi Krustev
Telerik team
Ande2013
Top achievements
Rank 1
Share this question
or