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 have a base view that defines quite a few filters that is shared across a few different views. On one of the sub-class views I want to add another ColumnFilter, e.g.:
classBaseView(GenericModelView):
...
filtering=Filtering(...)
classSubclassView(BaseView):
...
filtering= ... # I want to add a filter to the BaseView filtering without it affecting the other sub-classes.
I have a base view that defines quite a few filters that is shared across a few different views. On one of the sub-class views I want to add another
ColumnFilter
, e.g.:I've done this:
So on the sub-class I then do:
Is there a supported way to do this type of thing?
The text was updated successfully, but these errors were encountered: