This is a migrated thread and some comments may be shown as answers.

[Solved] it is possible to combine TabStrip and PanelBar?

3 Answers 70 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
lucas
Top achievements
Rank 1
lucas asked on 23 Aug 2010, 03:28 PM
Good Morning!

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.

3 Answers, 1 is accepted

Sort by
0
Accepted
Atanas Korchev
Telerik team
answered on 23 Aug 2010, 03:37 PM
Hello lucas,

Currently there is a known issue when you nest a tabstrip inside a panelbar. We have resolved that problem and the fix will appear shortly with the Q2 release. The same is due in a few days.

Regards,
Atanas Korchev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
lucas
Top achievements
Rank 1
answered on 23 Aug 2010, 04:44 PM
I'll go wait to release! thanks
0
Darrien
Top achievements
Rank 1
answered on 20 Dec 2010, 12:21 PM
We seem to be having a similar issue in nesting a PanelBar within a TabStrip; we are using the Q3 release.  Is this issue solved?

**** UPDATE: Our issue was when a PanelBar within a TabStrip was within another PanelBar.  The issue was the 2 PanelBars were named exactly the same.  Thanks and sorry for the false alarm.
Tags
General Discussions
Asked by
lucas
Top achievements
Rank 1
Answers by
Atanas Korchev
Telerik team
lucas
Top achievements
Rank 1
Darrien
Top achievements
Rank 1
Share this question
or