Hi,
Working with tables of thousands of rows, I use the "Search Query" field which gives results (Name, Firstname) on Free tables. Ok.
Now, I'd like to have a Search field on top that would allow to find all the rows with taht name.
How do I modifiy the SQL Statement :
SELECT Name, Firstname FROM #__customers ORDER BY 1, 2
to narrow the search to the input of the search box.
Something like
SELECT Name, Firstname FROM #__customers WHERE Name LIKE '%#sr_name#%' ORDER BY 1, 2
sr_name being the name of the search field.
(but that does not work).
I need to show all on landing, and then only the searched names.