Model-Bind variables
Overview
<xf:bind>
elements with a name
attribute automatically declare a corresponding XPath variable, as if using <xf:var>
. This is an extension of the XForms specification.
NOTE 1: Variables declared this way can only be used on binds within the XForms model where they are declared. Unlike top-level model variables, they are not visible in the view (see issue #309).
NOTE 2: Up until Orbeon Forms 4.4, issue #152 prevented properly referring to named binds within bind iterations. This issue is fixed with Orbeon Forms 4.5.
Variable resolution
With Orbeon Forms 4.5 and newer
Variable resolution attempts to find the "closest" associated target bind objects. In the following example, generated by Form Builder, there are variables associated with binds my-section-bind
, my-repeat-bind
, col1-bind
, col2-bind
, rowsum
, and totalsum
:
This allows calculate
expressions to refer to these variables:
rowsum-bind
refers, for each iteration ofmy-repeat-bind
, to the$col1
and$col2
belonging to that same iteration.totalsum-bind
, on the other hand, refers to the $rowsum` in all iterations.
The result shows the expected sums:
More specifically, given the following:
an expression on a given bind called below the context bind
a target bind referred to by means of a variable name in that expression
The following algorithm is followed:
If the variable name refers to the context bind itself or one of its ancestors, the single node corresponding to the current bind iteration is returned.
Otherwise, if the context bind and the target bind share a common ancestor, all branches starting from the common iteration of that common ancestor bind are followed to all possible target bind objects, and all nodes associated with those target bind objects are returned.
Otherwise, if the context bind and the target bind do not share a common ancestor, all nodes associated with all target bind objects are returned.
With Orbeon Forms 4.4 and earlier
If a bind referenced by a variable is within an unambiguous context, that is the context in which that bind evaluates is a single node, then the values of the bind's node-set is returned by the variable, otherwise the empty sequence is returned.
This means that target bind objects within more than one bind iteration cannot be accessed.