def contains(self, text): if self._value is None: return False return [ item for item in self._value.split(' | ') if utils.highlight_matcher(text, item) ] != []
def contains(self, text): if self._value is None: return False return [item for item in self._value.split(' | ') if utils.highlight_matcher(text, item)] != []
def matcher(self, value, content): return highlight_matcher(value, content)
def matches(self, value): return highlight_matcher(value, self._cell_content.value)