This question is locked. New answers and comments are not allowed.
I have a tabstrip in a userControl that is show in a telerik windows, this windows is show as a result of the edition of one record in a telerik grid, but i cant change the tabs clicking on it, i could make a try working with tabstrip events and some javascript but this stuff is done in the control (i'm sure in telerik example they do nothing to make it work). I have added the <%: Html.Telerik().ScriptRegistrar().DefaultGroup(group => group.Combined(true).Compress(true)) %> to load all javascript needed, i suppose must be something like i must add some script by i have no idea. I have create my project from Telerik Mvc Project addin for VS 2010 so it put all what i need.
Some help could be great.
I will copy here the tabstrip code, maybe is something in the code, but i just copy and paste the same tabstrip from the example.
<%
Html.Telerik().TabStrip()
.Name("TabStrip")
.Items(items =>
{
items.Add().Text("Item 1")
.Content(() =>
{%>
<p>
Content</p>
<%});
items.Add().Text("Item 2")
.Content(() =>
{%>
<p>
Content</p>
<%});
})
.SelectedIndex(0)
.Render();
%>
Some help could be great.
I will copy here the tabstrip code, maybe is something in the code, but i just copy and paste the same tabstrip from the example.
<%
Html.Telerik().TabStrip()
.Name("TabStrip")
.Items(items =>
{
items.Add().Text("Item 1")
.Content(() =>
{%>
<p>
Content</p>
<%});
items.Add().Text("Item 2")
.Content(() =>
{%>
<p>
Content</p>
<%});
})
.SelectedIndex(0)
.Render();
%>