I was trying to use the LoadContentFrom() of Kendo Window like this:
Html.Kendo().Window() .Name("time-hierarchy-edit-window") .Title("Add or Edit Leafs") .LoadContentFrom("/Hierarchies/EditTimeHierarchyNodes?hierarchyID=" + Request.QueryString["hierarchyID"]) .Draggable() .Width(500) .Render(); And I have the action method in controller:public ActionResult EditTimeHierarchyNodes(Guid hierarchyID) { EditTimeHierarchyNodesViewModel model = new EditTimeHierarchyNodesViewModel() { Hierarchy = m_timeHierarchyRepository.GetTimeHierarchy(hierarchyID), LeafNodeGroups = m_timeNodeRepository.GetLeafNodeGroups(hierarchyID), }; return View(); }However, when the ajax request came back, it gave me 500 error "This request has been blocked because sensitive information could be disclosed to third party web sites when this is used in a GET request. To allow GET requests, set JsonRequestBehavior to AllowGet." The issue is that the View() does not have any overload that allows me to specify the AllowGet option. Can any one shine some light on this? Thanks.