This question is locked. New answers and comments are not allowed.
Good Morning!
I wonder if it is possible to combine TabStrip and PanelBar!
for example:
PanelBar opens inside the TabStrip but incorrectly, as if the TabStrip prevent the PanelBar to draw correctly.
I wonder if it is possible to combine TabStrip and PanelBar!
for example:
<% Html.Telerik().TabStrip() .Name("TabStrip") .Items(items => { items.Add() .Text("Open Travel") .Content(() => { %> <p> lucas teste</p> <% }); items.Add().Text("Update Travel") .Content(() => { %> <% Html.Telerik().PanelBar() .Name("PanelBar") .Items(item => { item.Add().Text("Item 1") .Content(() => {%> <p> Content</p> <% }); }) .Render(); %> <% }); }).SelectedIndex(int.Parse(ViewData["Tab"].ToString())) .Render(); %>PanelBar opens inside the TabStrip but incorrectly, as if the TabStrip prevent the PanelBar to draw correctly.