73bbf9b01a
switching to a list of lists qml is way out of sync need to figure out how much the signals need to be changed and the best way to update the preview text for the qml
17 lines
243 B
QML
17 lines
243 B
QML
import QtQuick 2.4
|
|
import QtQuick.Controls 1.3
|
|
|
|
ListModel {
|
|
id: nestedModel1
|
|
objectName: "nestedModel1"
|
|
ListElement {
|
|
name: "Cars"
|
|
collapsed: true
|
|
subItems: [
|
|
ListElement {
|
|
itemName: "idiot"
|
|
}
|
|
]
|
|
}
|
|
}
|