Hi,
QMLifyProxyModel works quite good for me.
Just one bug correction on it :
The function QMLifyProxyModel::rowCount is actually returning columnCount.
Need to modify it :
Qt Code:
{ if(!sourceModel()) return 0; if(parent.isValid()) return 0; return sourceModel()->rowCount(); }To copy to clipboard, switch view to plain text mode
Bookmarks