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
I am using this module and implementing filters with ng-hide.
Each grid-item has an attribute "hidden" that is being changed by the filters functions.
The problem is that the items in the grid aren't organized after the attribute has been changed to "true" or "false", and the grid-items are floating on each other.
before filter func, grid-items are organized:
after filter func - not organized:
Thanks for the support!
The text was updated successfully, but these errors were encountered:
As it watch the list array for any changes to relayout, applying filter does not have any effect on model, that why does not cause any relayout. You have to manually watch for query string / modal which is used for filter, and invoke angular grid refresh method manually.
Check doc for refreshing manually.
I will update docs for dealing with filters, so its more clear.
I am using this module and implementing filters with ng-hide.
Each grid-item has an attribute "hidden" that is being changed by the filters functions.
The problem is that the items in the grid aren't organized after the attribute has been changed to "true" or "false", and the grid-items are floating on each other.
before filter func, grid-items are organized:
after filter func - not organized:
Thanks for the support!
The text was updated successfully, but these errors were encountered: