Hi, I have a RadGrid with AllowFilteringByColumn="True" and multiple columns with with the properties set up for filtering, like so:
AutoPostBackOnFilter="false" FilterControlWidth="100%" CurrentFilterFunction="StartsWith" ShowFilterIcon="false" FilterDelay="4000"
When I filter by 1 column, it works fine. Then I filter by an additional column, it works fine.
The problem seems to be when I clear those 2 column filters at the same time. The first column that is cleared, retains the filter value.
Another option would be to only do the filter when the user hits <enter>. After thinking about it, this may be the better choice, anyway, as it is more what the users are accustomed to. I see a bunch of old answers on how to do this, but nothing very current.
Thanks!