Telerik team,
I have a kendo UI grid and I apply filters for the grid based on the user input. Everything is working fine.
I also have the search filter for each column like here http://dojo.telerik.com/@balaji/aMoBA (filterable: {mode:"row"})
Now let's say I have a dropdown for all the price and whenever I select a price, the grid is refreshed to show the items with that particular price. I use KendoDataSource.filter({field,value,operator}) to filter the grid.
So far everything works fine. (column search works fine and also the price change refreshes the grid).
Now let's say the user types "ABC" in the grid column search and the grid shows only the items with product name "ABC".
Now the user changes the dropdown to show the items with particular price. In this case what happens is the whole grid is refreshed to show all the items with that price. Instead what I want is "Just the items with product name "ABC" and that particular price selected in the dropdown. Also I want the name "ABC" to be in the search box so that the user knows that he searched for "ABC". How can I do this in angular way?