Skip to content

Instantly share code, notes, and snippets.

@ebruchez
Created April 16, 2012 17:43
Show Gist options
  • Save ebruchez/2400248 to your computer and use it in GitHub Desktop.
Save ebruchez/2400248 to your computer and use it in GitHub Desktop.
<xh:html
xmlns:xh="http://www.w3.org/1999/xhtml"
xmlns:xf="http://www.w3.org/2002/xforms"
xmlns:ev="http://www.w3.org/2001/xml-events"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xh:head>
<xf:model>
<xf:instance id="persons">
<persons>
<person>
<id>marx</id>
<name>Karl Marx</name>
</person>
<person>
<id>engels</id>
<name>Friedrich Engels</name>
<friend>marx</friend>
</person>
</persons>
</xf:instance>
</xf:model>
</xh:head>
<xh:body>
<xf:group ref="instance('persons')/person[id = 'engels']">
<xf:output ref="instance('persons')/person[id=current()/friend]/name"/>
</xf:group>
</xh:body>
</xh:html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment