Hi,

I am using QTreeWidget to display the No of items using QTreeWidgetItem like this

Qt Code:
  1. n = new QTreeWidgetItem ((QTreeWidget*)0, QStringList ( strList ));
  2. n->setFlags ( n->flags() | Qt::ItemIsUserCheckable );
  3. n->setCheckState (0,Qt::Unchecked);
To copy to clipboard, switch view to plain text mode 

I set selectionbehaviour to QAbstractItemView::SelectItems
and selectionmode to QAbstractItemView::ExtendedSelection

Now If I select the items in treewidget using shift+arrow (or) ctrl+mouse pointer and press spacebar, the last item which is selected is checked. but i want to check all the items which are selected. How to achive this ?

I am using Qt 4.2.2/windows

Thanks
*npc*