Login  Register

xxforms:variable does not work

Posted by inanda.menezes on Apr 12, 2011; 11:09am
URL: https://discuss.orbeon.com/xxforms-variable-does-not-work-tp3444333.html

It seems that xxforms:variable does not work.
I've tested the example from the documentation and so far, I could not  print the values.

Version: orbeon-PE-3.9rc

XHTML:

<xhtml:head>
    <xforms:model id="my-model">
        <xforms:instance id="my-instance"><form>My-Instance Value</form></xforms:instance>
        <xxforms:variable name="mine" value="'TestValue'"/>
    </xforms:model>
    <xforms:model id="her-model">
        <xforms:instance id="her-instance"><form>Her-Instance Value</form></xforms:instance>
        <xxforms:variable name="hers" value="instance('her-instance')"/>
    </xforms:model>
</xhtml:head>
<xhtml:body>
   
    <xforms:output value="$mine">
        <xforms:label>My stuff:</xforms:label>
    </xforms:output>
    <xforms:group model="her-model">
       
        <xforms:output value="$hers">
            <xforms:label>Her stuff:</xforms:label>
        </xforms:output>
    </xforms:group>
</xhtml:body>