New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

showFilterItem

Displays the filtering item in the respective GridTableView when it was hidden previously on the client.

showFilterItem()

Example:

function ShowFilter() {
    var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
    masterTable.showFilterItem();
} 
In this article