如何清除Telerik ASP.NET MVC Grid上的过滤器

时间:2010-01-26 17:16:48

标签: jquery asp.net-mvc telerik telerik-mvc

我有一个允许用户过滤的网格。如果用户更改用于填充网格的搜索词,则上一次搜索的过滤器仍然存在。

<label for="UserName"> 
    User Name:</label> 
<%= Html.TextBox("UserName", "") %> 
&nbsp; &nbsp; 
<input id="btnSearch" type="submit" value="Submit" /> 
</p> 
<div class="<%= "t-" + Html.GetCurrentTheme() %>" style="width: 400px;"> 
<%= Html.Telerik().Grid<ADGroup>()       
        .Name("Groups") 
        .Columns(columns=> 
        { 
            columns.Add(c => c.GroupName).Width(350); 
        }) 
        .Sortable() 
        .Filterable() 
        .Pageable(paging => 
            paging.PageSize(20) 
        ) 
        .Ajax(ajax => ajax.Action("_GetGroups", "GroupSearch", new { userName = "John Doh" })) 
        .BindTo((IEnumerable<ADGroup>)ViewData["Groups"]) 
%> 
</div> 

我已经触发了按下btnSearch时发生的网格重新绑定。

<% 
Html.Telerik().ScriptRegistrar() 
    .OnDocumentReady(() =>  
    { 
    %> 
    var groupsGrid = $('#Groups').data('tGrid'); 
    $('#btnSearch') 
        .live("click", function() { 
            var user = $('#UserName').val(); 
            // rebind the related grid 
            groupsGrid.rebind({ 
                userName: user 
            }); 
        }); 
    <%  
}); 

%GT;

我知道我可以添加以下代码来调出过滤器菜单,但我希望能够在.rebind()调用发生之前或之后自动清除过滤器。

$('.t-grid-filter:first') 
     .trigger('click'); 

2 个答案:

答案 0 :(得分:4)

凭借korchev's灵感......我想出了重新绑定发生之前执行的以下内容。它清除过滤器值,然后应用新的(不存在的)值。

//Clear UI Filter Text
$('#Groups .t-clear-button').click();
$('#Groups .t-filter-button').click();

// rebind the related grid
groupsGrid.rebind({
    userName: user
});

答案 1 :(得分:2)

您可以查看我的回复here