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

XmlListModel {
    source: "model.xml"
    query: "/Pets/Pet"
    XmlRole { name: "name"; query: "/name/string()" }   //starts with '/'
    XmlRole { name: "type"; query: "type" }             //no type
    XmlRole { name: "age"; query: "age/" }              //ends with '/'
    XmlRole { name: "size"; query: "size/number()" }    //wrong type
}