Reputation: 1346
I'm quite new to QML and I'm struggling to find any information how to render a tree model in a simple way (although horizontally, rather than vertically):
Seems like QML only supports list data structures from models. Is there any way to do it?
Upvotes: 2
Views: 1240
Reputation: 1346
Figured it out on my own. The trick is to use DelegateModel, Repeater and Row/Column layouts, not TreeView.
Upvotes: 1