Comments? Feedback?

This wiki does not yet support public comments (a limitation of Google Sites), so we encourage you to post your comments either:

On Twitter by responding to @orbeon.

On our community mailing list: subscribe sending an email to ops-users-subscribe@ow2.org (content of subject/body doesn't matter), you'll get a response with the email to use to send your message to the community mailing list.

Recent site activity

Data-bound switch

A data-bound switch is not unlike an xforms:switch:

  • Except that the current case is not driven by the xforms:toggle action.
  • Instead, you bind the component to a node, and the current case will be the one that has an id equal to the value of that node.

For instance:

<fr:databound-switch ref="section">
    <xforms:case id="search">
        ...
    </xforms:case>
    <xforms:case id="results">
        ...
    </xforms:case>
</fr:databound-switch>