How do I get the parent for the current item in an xpath query in qml/qt ?
fn:parent() isn't implemented, ../ yes but doesn't work for me.
Seems like a focus problem.
xml example:
<groups>
<group id="A">
<item>bla</item>
<item>blah</item>
</group>
<group id="B">
<item>bla</item>
<item>blah</item>
</group>
<group id="C">
<item>bla</item>
<item>blah</item>
</group>
</groups>
The following XmlRole returns an empty string:
XmlListModel {
query: "/groups/group/item"
XmlRole { name: "group_id"; query: "../@id/string()" }
}