QML 1.0 GridView + QSortFilterProxyModel
-
I have a QAbstractListModel-based data model + QSortFilterProxy model that filters out some of the rows by a given critearia.
What is strange is that when I want to filter some of the items the grid view doesn't remove the items but does an unexpected sorting by showing the best matches at the beginning. The same filtering is applied to another model that is displayed in a QWidget-based view and the filtered out rows are removed not sorted as in QML's GridView.Any suggestions?