Hello,
I created a grid using the example provided here, here and here.
When I click on any cell to edit it, the following error is triggered. Any help?
The grid has the following code:
I created a grid using the example provided here, here and here.
When I click on any cell to edit it, the following error is triggered. Any help?
Uncaught TypeError: undefined is not a function kendo.all.min.js:9O kendo.all.min.js:9D kendo.all.min.js:9e.extend.kendoFocusable kendo.all.min.js:10Sizzle.selectors.filter.PSEUDO jquery-1.7.1.js:4605Sizzle.filter jquery-1.7.1.js:4127Sizzle jquery-1.7.1.js:3955Sizzle jquery-1.7.1.js:5083jQuery.fn.extend.find jquery-1.7.1.js:5339u.extend.refresh kendo.all.min.js:20u.extend.init kendo.all.min.js:20(anonymous function) kendo.all.min.js:10jQuery.extend.each jquery-1.7.1.js:658jQuery.fn.jQuery.each jquery-1.7.1.js:271e.fn.(anonymous function) kendo.all.min.js:10j.extend.editCell kendo.all.min.js:22(anonymous function) kendo.all.min.js:22jQuery.event.dispatch jquery-1.7.1.js:3256elemData.handle.eventHandle jquery-1.7.1.js:2875The grid has the following code:
@(Html.Kendo().Grid<Kendo2.Models.Product>() .Name("grid") .Columns(c => { c.Bound(b => b.Id).Hidden(); c.Bound(b => b.Name); c.Bound(b => b.Company); } ) .Editable(e => e.Mode(GridEditMode.InCell)) .Sortable() .Pageable(p => p .Refresh(true) .PageSizes(new int[] {2, 10}) .ButtonCount(5) ) .DataSource(dataSource => dataSource .Ajax() .Model(model => model.Id(m => m.Id)) .Read(read => read.Action("List", "Home")) ))