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.
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.