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?
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