About QML FolderListModel,it looks like a bug
Unsolved
QML and Qt Quick
-
Hi, I use ListView and FolderListModel to read a path,I want to sort it Through the Name.
[want result:aaa,B1,B2,B11,B21]
Normally,the result will be B1->B2->B11,but my result not, as shown above .
So,I want to ask if there is a good solution -
The result for windows OS10 sort.Sort By name.
QML seems sort by string,maybe it not consider other type. -
This is correct alphabetical sort, it is not a bug.
However, the model should support natural number sort, this is a missing feature - please consider filing a feature request on Qt bugtracker.
-
@sierdzio Yes,I think so.^_^
thank you!