请参阅Orbeon中XBL组件的外部实例

时间:2014-04-28 06:53:46

标签: orbeon xforms xbl

我正在创建自己的组件,在其中我想设置外部实例的值。例如,我的主要表单有:

<xf:model id="fr-form-model" xxf:expose-xpath-types="true">
    <!-- Main instance -->
    <xf:instance id="fr-form-instance">
        <form>
            <section-1>
                <myControl/>
            </section-1>
        </form>
    </xf:instance>
    ...

myControl.xbl里面我有:

<xf:setvalue
  model="fr-form-model"
  ref="instance('fr-form-instance')/form/section-1/myControl"
  value="'myValue'" /> 

但不幸的是它没有看到fr-form-model(&#34;对不存在的模型ID:fr-form-model&#34的引用;)这是可以理解的,因为组件是封装的,不能看外部元素。我怎样才能引用外部实例?

1 个答案:

答案 0 :(得分:1)

您可以使用xxf:binding()写入控件绑定(另请参阅gist):

<xh:html
        xmlns:xh="http://www.w3.org/1999/xhtml"
        xmlns:xf="http://www.w3.org/2002/xforms"
        xmlns:xxf="http://orbeon.org/oxf/xml/xforms"
        xmlns:fr="http://orbeon.org/oxf/xml/form-runner">
    <xh:head>
        <xf:model>
            <xf:instance>
                <value/>
            </xf:instance>
        </xf:model>
        <xbl:xbl xmlns:xbl="http://www.w3.org/ns/xbl" xmlns:xxbl="http://orbeon.org/oxf/xml/xbl">
            <xbl:binding id="fr-gaga" element="fr|gaga" xxbl:mode="binding">
                <xbl:template>
                    <xf:trigger>
                        <xf:label>Set value</xf:label>
                        <xf:setvalue event="DOMActivate" ref="xxf:binding('fr-gaga')" value="42"/>
                    </xf:trigger>
                </xbl:template>
            </xbl:binding>
        </xbl:xbl>
    </xh:head>
    <xh:body>
        <fr:gaga ref="instance()"/>
        <xf:output value="instance()"/>
    </xh:body>
</xh:html>

否则,快速而肮脏的方式是使用xxf:instance()功能。它通过XBL组件的边界可见。但我们不推荐它,因为它破坏了封装。

另见this forum answer