Hi Abu,
is this possible to use autofilter and search form together ?
example :
my grid is loaded with some search filters from parent grid (between 2 date for example)
but i want to filter client with autofilter between these 2 dates.
actually if i use toolbar filtering for client , it filter client from whole DB not just between date set in search form.
hope my explain is clear enough
thanks
2 Answers
There are several limitations in library which restricts this behavior.
Alternate solution is to submit the form (using method GET) when you search via external form, and based on submitted data, append a WHERE clause in select_command.
After that all search queries will be appended to your filtered select_command.
Your Answer