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

[Solved] All filters highlight

0 Answers 68 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
aa1237
Top achievements
Rank 1
aa1237 asked on 20 Sep 2010, 10:53 PM
 

 

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>

 

 

Tags
Grid
Asked by
aa1237
Top achievements
Rank 1
Share this question
or