Combo Box delegate disappears with QSortFilterProxyModel applied

Hi everyone,

I have a QTableView with QAbstractTableModel which contains a ComboBox delegate created with QItemDelegate. All this is working fine.

Now I want to add filtering/sorting capability on this view so I used QSortFilterProxyModel like this


self.table_model = DictionaryTableModel() # created with QAbstractTableModel
self.delegate = ComboDelegate(self)
self.ui.table_view.setItemDelegateForColumn(2, self.delegate)

self.proxy_model = QtCore.QSortFilterProxyModel(self)
self.proxy_model.setSourceModel(self.table_model)

# set the model
self.ui.table_view.setModel(self.proxy_model)

Now here sorting works but I lose my delegate from the column and get a NoneType if I try to query this delegate which means that delegate never made it to the proxy model and I have no idea how to fix this.

Please help if anyone has a clue on how to sort this issue.

Thanks,
ak

the issue should be in the logic of some of your business codes, the code you posted, should in general work.
try to post minimal code that reproduces this issue.
regards,

Hi Salem,

Thanks for replying. I found the problem with my code!

I was passing self as a parent to delegate class where self is the main_form QDialog but instead, I had to pass the table view as a parent to the delegate class like →

self.delegate = ComboDelegate(self.table_view)

thus making my view, parent of the delegate and this worked!!

Cheers,
Amit