I do server side filter, user type in top of a column, I generate filter string and load filtered data from server side. But I don't want the typed in filter to be in effect on client side too, it will filter out unexpectedly.
For example, a column is for voucher id, user could type in comma separated string like '12,22,33' to search for three voucher records, but the client side filter with it will hide all the three records returned.
Any suggestion?