我在项目中使用了Telerik ComboBox,并按如下方式定义了控件的标记:
@(Html.Telerik().ComboBoxFor(model => model.ReportType)
.BindTo(ViewBag.lstFileType as SelectList)
.AutoFill(true)
.Placeholder(ReportsResources.ReportsResources.OptionLabelReportType)
.SelectedIndex(0)
.HtmlAttributes(new { style = "width: 298px;" }))
ComboBox中有一些项目,但是当单击以展开ComboBox时,它会抛出错误。
控制台中的JS错误如下,
Uncaught TypeError: Cannot read property 'contains' of undefined jquery-1.7.1.min.js:3
c.documentElement.contains.m.contains jquery-1.7.1.min.js:3
(anonymous function) telerik.combobox.min.js:1
g jquery-1.7.1.min.js:2
f.event.dispatch jquery-1.7.1.min.js:3
h.handle.i jquery-1.7.1.min.js:3
ComboBox不会扩展。我正在使用JQuery 1.7.1。