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 has been archived by the owner on Nov 14, 2018. It is now read-only.
and I want to filter (advanced) on another, non-displayed field, I'm not able to since the getAdvancedFilters method in DataManager\Base\Action\ListAction.php uses the getFields() method to iterate over. Since this method is private, I can't override it to provide my own implementation.
Solution: Either allow this to be configurable via a closure, or switch private for protected.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
If I display the following fields in my List eg:
by using:
and I want to filter (advanced) on another, non-displayed field, I'm not able to since the
getAdvancedFilters
method inDataManager\Base\Action\ListAction.php
uses thegetFields()
method to iterate over. Since this method is private, I can't override it to provide my own implementation.Solution: Either allow this to be configurable via a closure, or switch
private
forprotected
.The text was updated successfully, but these errors were encountered: