Re: [Maya-Python] Connecting QLineEdit to SortFilterProxyModel

2013-10-26 Thread Justin Israel
Could it be that your are missing a closing character on your signal slot? QtCore.QObject.connect(self.filterLineEdit, QtCore.SIGNAL('textChanged( QString'),self._proxyModel.setFilterRegExp) Here 'textChanged( QString' You are using new style signal slots in some places and old style in others.

[Maya-Python] Connecting QLineEdit to SortFilterProxyModel

2013-10-26 Thread Bay
Hi all, sorry to fill the board again. At the moment I'm trying to implement a filter for my qtreeview. So far I've managed to implement a sorter using the QSortFilterProxyModel and I'm able to sort my list by clicking the headers in my model. However, I've not been successful connec