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 apply some tweak, it was saved in session.
After, i try to get applied column filters by call $grid->getFilters(), but in this method code will walk through $grid->sessionData, where are saved grid tweaks.
Then code try to get column by name tweaks, which it get from session and throw this exeption, because entity don't have this column.
Need to add to $requestQueries array in method getFilters() another item with value 'tweaks' to unset them from $session variable.
When i apply some tweak, it was saved in session.
After, i try to get applied column filters by call $grid->getFilters(), but in this method code will walk through $grid->sessionData, where are saved grid tweaks.
Then code try to get column by name tweaks, which it get from session and throw this exeption, because entity don't have this column.
Need to add to $requestQueries array in method getFilters() another item with value 'tweaks' to unset them from $session variable.
APYDataGridBundle/Grid/Grid.php
Lines 2196 to 2239 in 78e3bed
The text was updated successfully, but these errors were encountered: