This question is locked. New answers and comments are not allowed.
I'm using jquery ui tabs and displaying a telerik mvc rad grid in each tab. There are two tabs and each renders a ViewUserControl (ascx) containing a telerik mvc grid. When I select the second tab and filter one column in the grid all of the filters highlight and the t-acitve-filter class has been applied to all the filterable column filters. Does anyone know how to prevent this<code> <div id="Tabs" class="hide"> <ul> <li><a href="#Tabs-1">Available Items</a></li> <li><a href="#Tabs-2">Current Items</a></li> </ul> <div id="Tabs-1" > <% Html.RenderPartial("AvailableUserControl", this.Model, this.ViewData); %> </div> <div id="Tabs-2"> <% Html.RenderPartial("CurrentUserControl", this.Model, this.ViewData); %> </div> </div> </code>