aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickxmllistmodel/data/groups.qml
blob: c1b574a822577161edca69cfc3b291aba34758c9 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0
import QtQuick.XmlListModel 2.0

XmlListModel {
    source: "groups.xml"
    query: "//animal[@name='Garfield']/parent::group"

    XmlRole { name: "id"; query: "@id/string()" }
    XmlRole { name: "name"; query: "@name/string()" }
}