Posted
on Jan 20, 2012
(permalink)
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