It seems I am not capable of filtering more then one column at once. I think it's common usage when using filters, maybe I'm missing something.
For example, i have 4 columns in my QTableView
, let's say column X (string), Y (int), Z (string), Q (string)
. I wish to filter by filter_1
column X
and filter by filter_2
column Z
. Is it possible to set QSortFilterProxyModel
filter for more then one column (dynamically), but not all (re implementing filterAcceptsRow
).
Thanks