11 lines
194 B
QML
11 lines
194 B
QML
|
import QtQuick 2.7
|
||
|
import SortFilterProxyModel 0.2
|
||
|
import "../Base"
|
||
|
|
||
|
HListModel {
|
||
|
sorters: StringSorter {
|
||
|
roleName: "userId"
|
||
|
numericMode: true // human numeric sort
|
||
|
}
|
||
|
}
|