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:
  1. int QMLifyProxyModel::rowCount(const QModelIndex &parent) const
  2. {
  3. if(!sourceModel())
  4. return 0;
  5. if(parent.isValid())
  6. return 0;
  7.  
  8. return sourceModel()->rowCount();
  9. }
To copy to clipboard, switch view to plain text mode