This question is locked. New answers and comments are not allowed.
I have 2 grids in a tabstrip
the second tab of which has incorrect browsing data eg
/HCMember?_=1302179640802&Members-page=2
I've tried registering the javascript (although none of this is/was required for the first grid) to no avail
the actual grid code is:
and the tab strip
appreciate any guidance
the second tab of which has incorrect browsing data eg
/HCMember?_=1302179640802&Members-page=2
I've tried registering the javascript (although none of this is/was required for the first grid) to no avail
@{ Html.Telerik().ScriptRegistrar().DefaultGroup(group => { group.Add("telerik.common.js"); // That file is always required group.Add("telerik.grid.js"); group.Add("telerik.grid.filtering.js"); // Include only if filtering is enabled group.Add("telerik.grid.grouping.js"); // Include only if grouping is enabled group.Add("telerik.grid.editing.js"); // Include only if editing is enabled });}@model IEnumerable<WAC_MVC.Models.Member> @(Html.Telerik().Grid(Model) .Name("Members") .DataKeys(key => key.Add(m => m.mMemberID)) .HtmlAttributes(new { style = "border: 0;" }) .Columns(col => { col.Bound(m => m.mFName).Width(60); col.Bound(m => m.mSName).Width(60); col.Bound(m => m.GroupID).Width(60); col.Bound(m => m.mMale).Width(80); }) .Pageable(paging => paging.PageSize(20)) .Scrollable(scrolling => scrolling.Height(580)) .Sortable() .Filterable() )@{Html.Telerik().TabStrip() .Name("Handicapper") .Effects(fx => fx.Expand() .Opacity() .OpenDuration(200) .CloseDuration(300)) .Items(parent=> { parent.Add() .Text("Results Entry") .Content(@<text> @Html.Partial("_ResultGridEditable") </text>) .Selected(true); parent.Add() .Text("Edit Members") .LoadContentFrom("Index", "HCMember"); }) .Render();}appreciate any guidance