Search code examples
telerikfilteringradgrid

How to hide the radgrid filter header while still allowing filtering?


I have a radgrid which allows filtering, but the filter strings come from external text boxes (so I can use autocomplete on them).

Is there a way to hide the radgrid's built in filter fields while still allowing filtering on the radgrid?


Solution

  • I just threw this on the page and it works.

    <script type="text/javascript">
       function pageLoad(sender, args) {
          $find('<%=RadGrid1.ClientID %>').get_masterTableView().hideFilterItem();
       }
    </script>
    

    Thanks to Vlad at http://www.telerik.com/community/forums/aspnet-ajax/grid/radgrid-hide-show-filter.aspx