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

[Solved] TabStrip and Grid server Binding

0 Answers 44 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
jawed
Top achievements
Rank 1
jawed asked on 20 Jan 2012, 02:39 PM
Hi
I am using telerik grid and binding it using server binding. Its was working properly its all operation like sorting,paging ,matster/details and also culture property.
Now I want to use Telerik TabStrip and in this tab i want to display my grid.
@{ Html.Telerik().TabStrip()
        .Name("TabStrip")
        .Items(tabstrip =>
        {
            tabstrip.Add()
                    .Text("Based on jQuery")
                    .Content(@<text>
                        <p>
                            The client-side code of the Telerik Extensions for ASP.NET MVC is based on
                            the open source and Microsoft-supported jQuery JavaScript library.
                            By using jQuery, the Telerik Extensions minimize their client-side footprint
                            and draw on the power of jQuery for advanced visual effects as well as for an easy
                            and reliable way to work with HTML elements.
                        </p>
                    </text>);
            tabstrip.Add()
                    .Text("Grid")
                    
                    .LoadContentFrom("Grid", "Home");


          
        })
        .SelectedIndex(0)
        .Render();
       
}  

Its display the grid data into the tab but operation(sorting,paging,editing) on grid within the tab is not working.

So How can I use tabsrip and grid with server binding so that grid operation work properly??
Please help..

Please help i m waiting for reply.How to use grid with full oparations within tabstrip
Tags
TabStrip
Asked by
jawed
Top achievements
Rank 1
Share this question
or