Issue with Asp.Net processor working with the Kendo UI view tree after updating Visual Studio 2013 2

I am developing an Asp.Net MVC website using the Kendo user interface.

The RTM version for updating Visual Studio 2013 Update 2 was installed and a problem was received with the IIS processor (CPU> = 30%). http://c2n.me/i7juKB.png

After an hour of trouble finding, it turned out that the problem was related to Treeview in the Kendo user interface with hierarchical data.

Kendo Treeview Asp.Net MVC Shell Code:

@(Html.Kendo().TreeView().HtmlAttributes(new { style = "height:150px;" }) .Name("treeview-library-country") .Events(events => events.Select("common.onTreeViewSelect").Collapse("common.onTreeViewCollapse").Expand("common.onTreeViewExpand")) .Checkboxes(checkboxes => checkboxes.Name("RegionsCheckedNodes").CheckChildren(false)).BindTo(Model.Regions, mappings => mappings.For<MyTreeViewItem>(binding => binding.ItemDataBound((item, i) => { item.Text = i.Text; item.Id = i.Id; item.Checked = i.IsChecked; }).Children(i => i.Items)))) 

Class TreeViewItem

 public class MyTreeViewItem { public bool IsChecked { get; set; } public string Id { get; set; } public string Text { get; set; } public int Count { get; set; } public string AdditionalInfo { get; set; } public List<MyTreeViewItem> Items { get; set; } } 

The actual problem is part of the .Children(i => i.Items) code .Children(i => i.Items) . When I remove it, everything is fine.

PS The site works fine until the page with the tree is loaded.

solvable

Just disabled the browser link in Visual Studio.

enter image description here

+2
asp.net-mvc telerik iis-express kendo-asp.net-mvc kendo-treeview
May 14 '14 at 14:31
source share

No one has answered this question yet.

See similar questions:

42
Updated version of Visual Studio 2013 2

or similar:

156
The process with the identifier #### was not started in updating the professional version of 2013 studio 3
6
Telerik UI (Kendo) for ASP.NET MVC TreeView Tasks
2
Validating a Form Using ModelState
one
Setting a default value for a column in the kendo ui grid for DateTime.Now
one
Getting a Kendo Tree for Work
one
ASP.NET MVC Kendo TreeView with Signal
0
Kendo UI Web Tree Drag and Drop Issues in ASP MVC
0
Kendo HierarchicalDataSource issue related to Kendo tree tree
0
The chart component is not displayed using the Kendo UI. Asp.net mvc core
0
How to remove kendo ui grid row based on column value



All Articles