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
{{ message }}
This repository was archived by the owner on May 28, 2026. It is now read-only.
Hello, and thank you for this bundle.
it would be super cool to have the ability to filter on multiple entities.
I think minor changes should allow to do so :
in
Model/Form/Filter/Type/EntityFilterType.php➡️ use the option parameter to allow
multiple => truein
Model/Form/Filter/EntityFilter.php➡️ check if multiple values are selected (
if (count($form->get($index)->getData()['entity']) > 1) to switch from where xx = yy to where xx IN (yy,zz)I have already done that in my project. What do you think about a PR on this ?