Browser: Internet Explorer 9
Framework: ASP.net MVC 3 with Razor
IDE: Visual Studio 2010
OS: Microsoft Windows 7
Kendo Version: 2012.2.710
When I open my Webpage with a Html.Kendo().Grid in a C# System.Windows.Forms.WebBrowser Control and try to group by a column I get the attached javascript Error. The inital load of the data works.
When I open the Page using Internet Explorer everything works.
When I use my Webbrowser Control to open the telerik grid samples grouping works,
Error translated:
In a script on this page has a error occred:
Line: 8
Column: 44082
Error: Could not get value of "length". The object is null or undefined
Code: 0
URL: http://localhost:12384/Scripts/kendo.web.min.js
My Grid Control:
Framework: ASP.net MVC 3 with Razor
IDE: Visual Studio 2010
OS: Microsoft Windows 7
Kendo Version: 2012.2.710
When I open my Webpage with a Html.Kendo().Grid in a C# System.Windows.Forms.WebBrowser Control and try to group by a column I get the attached javascript Error. The inital load of the data works.
When I open the Page using Internet Explorer everything works.
When I use my Webbrowser Control to open the telerik grid samples grouping works,
Error translated:
In a script on this page has a error occred:
Line: 8
Column: 44082
Error: Could not get value of "length". The object is null or undefined
Code: 0
URL: http://localhost:12384/Scripts/kendo.web.min.js
My Grid Control:
@(Html.Kendo().Grid<lobotask.web.ViewModel.TaskViewModel>() .Name("Grid") .Columns(columns => { //columns.Bound(t => t.).Title("ID"); columns.Bound(t => t.Name).Title("Name").Groupable(true); columns.Bound(t => t.Description).Title("Beschreibung").Groupable(false); columns.Bound(t => t.RecipientsText).Title("Empfänger").Groupable(true); columns.Bound(t => t.Status).Title("Status").Groupable(true).Width(100); columns.Bound(t => t.Status).Title("Result").Groupable(true).Width(100); }) .Pageable() .Sortable() // .Resizable(t => t.Columns(true)) .Scrollable() .Filterable() .Groupable() .DataSource(dataSource => dataSource .Ajax() .Read(read => read.Action("MyTasks", "Tasks")) //.Server() //.Read( ) )