Created
May 14, 2015 23:49
-
-
Save avernet/c44853b0acf27c030aa9 to your computer and use it in GitHub Desktop.
Dropdown with values from a repeat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xh:html xmlns:xh="http://www.w3.org/1999/xhtml" xmlns:xf="http://www.w3.org/2002/xforms" | |
xmlns:xs="http://www.w3.org/2001/XMLSchema" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:ev="http://www.w3.org/2001/xml-events" | |
xmlns:xi="http://www.w3.org/2001/XInclude" | |
xmlns:xxi="http://orbeon.org/oxf/xml/xinclude" | |
xmlns:xxf="http://orbeon.org/oxf/xml/xforms" | |
xmlns:exf="http://www.exforms.org/exf/1-0" | |
xmlns:fr="http://orbeon.org/oxf/xml/form-runner" | |
xmlns:saxon="http://saxon.sf.net/" | |
xmlns:sql="http://orbeon.org/oxf/xml/sql" | |
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" | |
xmlns:fb="http://orbeon.org/oxf/xml/form-builder"> | |
<xh:head> | |
<xh:title>Untitled Form</xh:title> | |
<xf:model id="fr-form-model" xxf:expose-xpath-types="true"> | |
<!-- Main instance --> | |
<xf:instance id="fr-form-instance" xxf:exclude-result-prefixes="#all"> | |
<form> | |
<household> | |
<members> | |
<members-iteration> | |
<first-name>Mary</first-name> | |
<last-name>Templeton</last-name> | |
</members-iteration> | |
<members-iteration> | |
<first-name>John</first-name> | |
<last-name>Templeton</last-name> | |
</members-iteration> | |
</members> | |
<head/> | |
</household> | |
</form> | |
</xf:instance> | |
<!-- Bindings --> | |
<xf:bind id="fr-form-binds" ref="instance('fr-form-instance')"> | |
<xf:bind id="household-bind" name="household" ref="household"> | |
<xf:bind id="members-bind" ref="members" name="members"> | |
<xf:bind id="members-iteration-bind" ref="members-iteration" name="members-iteration"> | |
<xf:bind id="first-name-bind" ref="first-name" name="first-name"/> | |
<xf:bind id="last-name-bind" ref="last-name" name="last-name"/> | |
</xf:bind> | |
</xf:bind> | |
<xf:bind id="head-bind" ref="head" name="head"/> | |
</xf:bind> | |
</xf:bind> | |
<!-- Metadata --> | |
<xf:instance xxf:readonly="true" id="fr-form-metadata" xxf:exclude-result-prefixes="#all"> | |
<metadata> | |
<application-name>a</application-name> | |
<form-name>a</form-name> | |
<title xml:lang="en">Untitled Form</title> | |
<description xml:lang="en"/> | |
<singleton>false</singleton> | |
</metadata> | |
</xf:instance> | |
<!-- Attachments --> | |
<xf:instance id="fr-form-attachments" xxf:exclude-result-prefixes="#all"> | |
<attachments> | |
<css mediatype="text/css" filename="" size=""/> | |
<pdf mediatype="application/pdf" filename="" size=""/> | |
</attachments> | |
</xf:instance> | |
<!-- All form resources --> | |
<!-- Don't make readonly by default in case a service modifies the resources --> | |
<xf:instance id="fr-form-resources" xxf:readonly="false" xxf:exclude-result-prefixes="#all"> | |
<resources> | |
<resource xml:lang="en"> | |
<head> | |
<label>Head of household</label> | |
<hint/> | |
<item> | |
<label>First choice</label> | |
<value>1</value> | |
</item> | |
<item> | |
<label>Second choice</label> | |
<value>2</value> | |
</item> | |
<item> | |
<label>Third choice</label> | |
<value>3</value> | |
</item> | |
</head> | |
<first-name> | |
<label>First name</label> | |
<hint/> | |
</first-name> | |
<last-name> | |
<label>Last name</label> | |
<hint/> | |
</last-name> | |
<household> | |
<label>Household</label> | |
</household> | |
</resource> | |
</resources> | |
</xf:instance> | |
<!-- Utility instances for services --> | |
<xf:instance id="fr-service-request-instance" xxf:exclude-result-prefixes="#all"> | |
<request/> | |
</xf:instance> | |
<xf:instance id="fr-service-response-instance" xxf:exclude-result-prefixes="#all"> | |
<response/> | |
</xf:instance> | |
<xf:instance xxf:readonly="true" id="members-template"> | |
<members-iteration> | |
<first-name/> | |
<last-name/> | |
</members-iteration> | |
</xf:instance> | |
</xf:model> | |
</xh:head> | |
<xh:body> | |
<fr:view> | |
<fr:body xmlns:xbl="http://www.w3.org/ns/xbl" xmlns:p="http://www.orbeon.com/oxf/pipeline" | |
xmlns:oxf="http://www.orbeon.com/oxf/processors"> | |
<fr:section id="household-control" bind="household-bind"> | |
<xf:label ref="$form-resources/household/label"/> | |
<fr:grid id="members-control" bind="members-bind" repeat="content" min="1" | |
template="instance('members-template')"> | |
<xh:tr> | |
<xh:td> | |
<xf:input id="first-name-control" bind="first-name-bind"> | |
<xf:label ref="$form-resources/first-name/label"/> | |
<xf:hint ref="$form-resources/first-name/hint"/> | |
<xf:alert ref="$fr-resources/detail/labels/alert"/> | |
</xf:input> | |
</xh:td> | |
<xh:td> | |
<xf:input id="last-name-control" bind="last-name-bind"> | |
<xf:label ref="$form-resources/last-name/label"/> | |
<xf:hint ref="$form-resources/last-name/hint"/> | |
<xf:alert ref="$fr-resources/detail/labels/alert"/> | |
</xf:input> | |
</xh:td> | |
</xh:tr> | |
</fr:grid> | |
<fr:grid> | |
<xh:tr> | |
<xh:td> | |
<fr:dropdown-select1 xmlns:xxbl="http://orbeon.org/oxf/xml/xbl" id="head-control" bind="head-bind"> | |
<xf:label ref="$form-resources/head/label"/> | |
<xf:hint ref="$form-resources/head/hint"/> | |
<xf:alert ref="$fr-resources/detail/labels/alert"/> | |
<xf:itemset ref="/form/household/members/members-iteration"> | |
<xf:label ref="concat(first-name, ' ', last-name)"/> | |
<xf:value ref="concat(first-name, ' ', last-name)"/> | |
</xf:itemset> | |
</fr:dropdown-select1> | |
</xh:td> | |
</xh:tr> | |
</fr:grid> | |
</fr:section> | |
</fr:body> | |
</fr:view> | |
</xh:body> | |
</xh:html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment