I need some help with negate this filter for the ObjectListView.
def addFilter(self, text):
# OLV.Filter.Predicate()
meter_flt = OLV.Filter.TextSearch(self, text=text)
self.SetFilter(meter_flt)
This works great, but if i try to filter like "chicken" then it's only show chickens. I want it to be reversed, so if i type chicken, everything apart from chicken should be displayed.
Thanks for your help!
You can use
Filter.Predicate
Following is a code snippet for handling multiple text to be excluded from the list of items.