I have a kendo grid where each column is searcheable using the standard dropdown filter menu but there is also a master search bar at the top where the user can search across many columns at once.
I am using the technique described on http://www.telerik.com/forums/grid-search-feature to implement the custom search.
The problem I am encountering is that when I call .filter() on the grid dataSource to add my custom search filters from the master search bar, this causes the filter panels on each column to update and display the master search term. The user can then edit the search term from both the master search bar and the individual panels which gets confusing quite quickly.
How can I add my custom search functionality without having the grid replicate the search term in each column's panel?