English 中文(简体)
form form 体积
原标题:orbeon custom xbl component in form builder
  • 时间:2012-05-14 13:54:26
  •  标签:
  • orbeon

I m trying to create a custom component that when instantiated in form builder it would have in fr-form-instance a node containing child nodes and not only a single node as shown in the tutorial: http://wiki.orbeon.com/forms/doc/developer-guide/xbl-components-guide#TOC-Event-handling.

例如,如果我用制成手工艺中的教学投入部分:

.....

    <fb:metadata>
        <fb:display-name lang="en">Custom Component</fb:display-name>
        <fb:datatype>xforms:string</fb:datatype>
        <fb:template>
            <cc:test ref=""/>
        </fb:template>
    </fb:metadata>   
    <xbl:binding element="fr|tutorial-input" id="fr-tutorial-input">
        <xbl:template>
            <xforms:group xbl:attr="model context ref bind" xxbl:scope="outer">
                <xbl:content includes="xforms|label,xforms|help,xforms|hint,xforms|alert"/>
                <xforms:group xxbl:scope="inner">
                    <xxforms:variable name="binding" as="node()?">
                        <xxforms:sequence select="." xxbl:scope="outer"/>
                    </xxforms:variable>
                    <xforms:input ref="$binding"/>
                </xforms:group>
            </xforms:group>
        </xbl:template>
    </xbl:binding>

..... 

制式建筑商只能有一口 no:

.....
    <xforms:instance id="fr-form-instance">
        <form>
            <section>
                <contorl-x/> //only one node
.....

我想做的是:

.....
    <xforms:instance id="fr-form-instance">
        <form>
            <section>
                <contorl-x>// x child nodes 
                    <contorl-x-child-one> 
                    <contorl-x-child-two> 
                       .....
                </contorl-x> 
.....

是否可能这样做? 在其他组成部分/工具中是否有类似情况?

最佳回答
问题回答

暂无回答




相关问题
How to create a grouped XBL control

I am trying to create an XBL control which groups together a xform date, a drop down and a text box in Orbeon with the following code snippet: <xbl:binding id="fb-generalform" element="fr|...

Re-initialize XBL component on xxforms-iteration-moved

I have a XBL component which creates a checkbox control in javascript. Value is set in javascript during the component initialization. Component works well when not used inside repeat but inside ...

XForms: set relevancy for a list

I have a list element in my model instance. I am using Orbeon XForms. <mypage> <list name= mylist /> <status /> </mypage> Status can be Private or Public. In xforms:...

XForms: set default selection in dropdown in binding

I have a main instance named myinstance which has the element color. Color can be Red , Blue , Green or Yellow . The colors are populated in a drop-down from another instance called ...

xform data grid

I am using orbeon to process my xforms. I am attempting to create a data grid that I can use to copy and paste rows/columns of data from my clipboard (excel). Do you have any clue how I can implement ...

热门标签