You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I'm looking for the possiblity to add a search all filter.
Is there currently a way to do this?
Thanks!
The text was updated successfully, but these errors were encountered:
creiner
changed the title
Question - is there a way to search all configures columns?
Question - is there a way to search all configured columns?
Dec 2, 2024
I think SearchFilterType is what you need. It works kinda like a CallbackFilterType where you need to handle the filtration by yourself, but rendered separately:
Inside the handler you can add search criteria using LIKE, Full-text-search or whatever you want, on which fields you like.
Of course you can move the logic to the repository, then call the repository method inside the handler.
Please note that if you're using Doctrine ORM, the proxy query passed as the handler's argument will be an instance of DoctrineOrmProxyQueryInterface that you can use like a regular QueryBuilder and call andWhere, orWhere, etc.
Hi,
I'm looking for the possiblity to add a search all filter.
Is there currently a way to do this?
Thanks!
The text was updated successfully, but these errors were encountered: