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
When I try to filter by customer, bad DQL is constructed:
SELECT item, actuarial, customer
FROM App\Model\Entities\ActuarialItem item
INNER JOINitem.actuarial actuarial
INNER JOINactuarial.customer customer
WHEREactuarial.type= :akwm0 AND (customer.bNameLIKE :vvqz0 ORactuarial.customer.bName LIKE
:vvqz1)
ORDER BYitem.actuarialItemIdDESC
Filter by actuarial.customer.bName does not work. I am not sure why is OR added for column field, maybe it could be fixed by using only setted filter field?
The text was updated successfully, but these errors were encountered:
@foxycode: Are you sure, you pasted exactly same part of grid definition? Calling setColumn() after addColumnText() is not for filtering but for sorting.
@o5 When I change setColumn on column from actuarial.customer.bName to customer.bName, it will display error right after displaying grid. And you're right about sorting, it doesn't work too on customer column.
@o5 I created test from your examples here: https://github.com/foxycode/grido-examples
It gives me now another error that I have, maybe because of SQLite instead MySQL. Please look at it.
I have doctrine QB which I use as model:
I am creating column like this:
When I try to filter by customer, bad DQL is constructed:
Filter by
actuarial.customer.bName
does not work. I am not sure why is OR added for column field, maybe it could be fixed by using only setted filter field?The text was updated successfully, but these errors were encountered: