Just as a FYI, I ended up creating a ticket on this yesterday morning... Once I get info from there I will also post it in here. Not sure if you want to delete this thread because of that. Just thought I would share the info if there is a way to resolve this.
Sure, The easiest way to reproduce it is to create an new Kendo UI MVC 3 project. Then change 3 files, the Index page is as followed
<h2>@ViewBag.Message</h2>
<p>
To learn more about ASP.NET MVC visit <a href="http://asp.net/mvc" title="ASP.NET MVC Website">http://asp.net/mvc</a>.
</p>
<p>
To learn more about working with the Kendo UI Complete for ASP.NET MVC, you can visit the folowing resources:
</p>
<ul>
<li><a href="http://demos.kendoui.com/">online demos</a></li>
<li><a href="http://docs.kendoui.com/getting-started/using-kendo-with/aspnet-mvc/introduction">online documentation</a></li>
<li><a href="http://www.kendoui.com/forums.aspx">community forums</a></li>
<li><a href="http://tv.telerik.com/search?FilterByTags=KendoUI">videos on Telerik TV</a></li>
</ul>
@(Html.Kendo().TabStrip()
.Name("tabstrip")
.Items(tabstrip => tabstrip.Add().Text("test")
.Selected(true)
.LoadContentFrom("Test", "home"))
)
The Test.cshtml is as followed....
<a href="http://www.kendoui.com">some random text here for link</a>
Inside the home controler i have the following.
public ActionResult Test()
{
return PartialView();
}