views:

574

answers:

1

Hello, i'm using a QTreeWidget to display some simple items. I've set the list sortable by .setSortingEnabled(true) calling. In this way, the list is sorted only when the user press the title column, and not automatically whenever new item is inserted. I have two question:

  • Is there a way to force the automatic sorting in a specified column without calling .sortItems(column) at every item insertion? If it's possible, i would highlight the whole sorted column.
+1  A: 

To do this, use QTreeView::setSortingEnabled() and QTreeView::sortByColumn. Just remember to turn this on /after/ you initially populate the widget, and turn it off again /before/ doing any bulk updates for efficiency.

Bille