Hi, I am current replacing Telerik MVC extension with Kendo UI for MVC and having some issues with new Grid. I have a Grid as follow:
I had an Error as Uncaught TypeError: undefined is not a function in kendo.web.min.js:8 and all control after this Grid stop working as well. Could you give me some ideas how to fix it? thanks
@{
Html.Kendo().Grid(Model.Employees)
.Name(
"EmployeeGrid"
)
.Columns(columns =>
{
columns.Bound(o => o.FirstName).Width(100).Title(
"First Name"
);
columns.Bound(o => o.LastName).Width(100).Title(
"Last Name"
);
})
.Pageable()
.Render() ;
}
I had an Error as Uncaught TypeError: undefined is not a function in kendo.web.min.js:8 and all control after this Grid stop working as well. Could you give me some ideas how to fix it? thanks