Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
[Solved] QStandardItemModel Multi Column Sort
-
Hello,
How can i sort multiple columns of a QStandardItemModel ?origin
1 CCC BBB
2 AAA CCC
3 AAA AAAsort to
1 AAA AAA
2 AAA CCC
3 CCC BBBThanks in advance !
-
Hi,
Do it in 2 steps: Sort by the 2nd column, and then sort by the 1st column.
-
hello,
tsss, how easy.
thanks for the quick reply !