Skip to content

Instantly share code, notes, and snippets.

Created February 13, 2014 12:42
Show Gist options
  • Select an option

  • Save anonymous/8974440 to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/8974440 to your computer and use it in GitHub Desktop.
checkboxes
<xh:html xmlns:xh="http://www.w3.org/1999/xhtml"
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:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:fb="http://orbeon.org/oxf/xml/form-builder"
xmlns:f="http//www.orbeon.com/function"
xmlns:oxf="http://www.orbeon.com/oxf/processors"
xmlns:ev="http://www.w3.org/2001/xml-events"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:odt="http://orbeon.org/oxf/xml/datatypes"
xmlns:xpl="java:org.orbeon.oxf.pipeline.api.FunctionLibrary"
xmlns:sql="http://orbeon.org/oxf/xml/sql"
xmlns:p="http://www.orbeon.com/oxf/pipeline"
xmlns:form-runner="java:org.orbeon.oxf.fr.FormRunner"
xmlns:xf="http://www.w3.org/2002/xforms"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<xh:head>
<xh:title>Untitled Form</xh:title>
<xf:model id="fr-form-model" xxf:expose-xpath-types="true">
<xf:instance id="fr-form-instance">
<form>
<section-4>
<control-1/>
<control-2/>
<control-3/>
</section-4>
</form>
</xf:instance>
<xf:bind xmlns:dataModel="java:org.orbeon.oxf.fb.DataModel" id="fr-form-binds"
ref="instance('fr-form-instance')">
<xf:bind id="section-4-bind" ref="section-4" name="section-4">
<xf:bind id="control-1-bind" ref="control-1" name="control-1"/>
<xf:bind id="control-2-bind" ref="control-2" name="control-2"
relevant="xxf:split($control-1)=&#34;one&#34;"/>
<xf:bind id="control-3-bind" ref="control-3" name="control-3"
relevant="(xxf:split($control-1)=&#34;two&#34; and $control-2!=&#34;&#34;) or (xxf:split($control-1)=&#34;two&#34; and xxf:split($control-1)=&#34;three&#34;) or $control-1=&#34;two&#34;"/>
</xf:bind>
</xf:bind>
<xf:instance xxf:readonly="true" id="fr-form-metadata">
<metadata>
<application-name>test1</application-name>
<form-name>test</form-name>
<title xml:lang="en">Untitled Form</title>
<description xml:lang="en"/>
</metadata>
</xf:instance>
<xf:instance id="fr-form-attachments">
<attachments>
<css mediatype="text/css" filename="" size=""/>
<pdf mediatype="application/pdf" filename="" size=""/>
</attachments>
</xf:instance>
<xf:instance id="fr-form-resources" xxf:readonly="false">
<resources>
<resource xml:lang="en">
<control-1>
<label>control-1</label>
<hint/>
<item>
<label>First</label>
<value>one</value>
</item>
<item>
<label>Second</label>
<value>two</value>
</item>
<item>
<label>Third</label>
<value>three</value>
</item>
</control-1>
<control-2>
<label>control-2</label>
<hint/>
</control-2>
<control-3>
<label>control-3</label>
<hint/>
</control-3>
<section-4>
<label/>
<help/>
</section-4>
</resource>
</resources>
</xf:instance>
<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:model>
<xh:style type="text/css">
.labas {color: #990000;}
</xh:style>
</xh:head>
<xh:body>
<fr:view>
<fr:body xmlns:xbl="http://www.w3.org/ns/xbl"
xmlns:dataModel="java:org.orbeon.oxf.fb.DataModel">
<fr:section id="section-4-control" bind="section-4-bind">
<xf:label ref="$form-resources/section-4/label"/>
<fr:grid>
<xh:tr>
<xh:td>
<xf:select id="control-1-control" appearance="full" bind="control-1-bind">
<xf:label ref="$form-resources/control-1/label"/>
<xf:hint ref="$form-resources/control-1/hint"/>
<xf:alert ref="$fr-resources/detail/labels/alert"/>
<xf:itemset ref="$form-resources/control-1/item">
<xf:label ref="label"/>
<xf:value ref="value"/>
</xf:itemset>
</xf:select>
</xh:td>
</xh:tr>
<xh:tr>
<xh:td>
<xf:input id="control-2-control" bind="control-2-bind">
<xf:label ref="$form-resources/control-2/label"/>
<xf:hint ref="$form-resources/control-2/hint"/>
<xf:alert ref="$fr-resources/detail/labels/alert"/>
</xf:input>
</xh:td>
</xh:tr>
<xh:tr>
<xh:td>
<xf:input id="control-3-control" bind="control-3-bind">
<xf:label ref="$form-resources/control-3/label"/>
<xf:hint ref="$form-resources/control-3/hint"/>
<xf:alert ref="$fr-resources/detail/labels/alert"/>
</xf:input>
</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