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
Even with calling notifyDataChange, disabling enableFiltering on a columnDef does not update the column header to remove the filters. Changing something like displayName and then calling notifyDataChange works, but modifying enableFiltering does not. I really hope I missed something, but it looks like a bug.
Even with calling
notifyDataChange
, disablingenableFiltering
on a columnDef does not update the column header to remove the filters. Changing something like displayName and then calling notifyDataChange works, but modifying enableFiltering does not. I really hope I missed something, but it looks like a bug.Example:
http://plnkr.co/edit/ILZh6kosopnHqGtNjZ3c?p=preview
More details: In the 'ui-grid/uiGridHeaderCell' template,
filterable
is still resolving to trueWorkaround: Create a custom headerCellTemplate, and replace
filterable
withgrid.options.enableFiltering && col.enableFiltering
The text was updated successfully, but these errors were encountered: