This question is locked. New answers and comments are not allowed.
http://demos.telerik.com/aspnet-mvc/razor/window/clientsideapi
In this example you have controller called public ActionResult ClientSideApi()
The Window calls:
.LoadContentFrom("AjaxView", "Window")
Which has an action called AjaxView and controller called Window.
So it really calls the following:
Now when I set the index and controller in my version, only th controller seems to be referenced as /Window
In this example you have controller called public ActionResult ClientSideApi()
The Window calls:
.LoadContentFrom("AjaxView", "Window")
Which has an action called AjaxView and controller called Window.
So it really calls the following:
jQuery('#Window').tWindow({modal:false, contentUrl:'/aspnet-mvc/razor/Window/AjaxView', draggable:true, resizable:false});
Now when I set the index and controller in my version, only th controller seems to be referenced as /Window