追加ボタンを使用して、実行時に繰り返し要素を 1 つ追加しようとしています。追加ボタンをクリックすると、「関数インデックスは範囲外の繰り返し ID 'employee-repeat' を使用しています」というエラーが表示されます。フォーム内で繰り返し要素を適切に参照しているかどうかわかりません。ここに からの完全な x があります。
`<xhtml:html xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xxforms="http://orbeon.org/oxf/xml/xforms"
xmlns:saxon="http://saxon.sf.net/"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xxi="http://orbeon.org/oxf/xml/xinclude"
xmlns:sql="http://orbeon.org/oxf/xml/sql"
xmlns:xforms="http://www.w3.org/2002/xforms"
xmlns:exforms="http://www.exforms.org/exf/1-0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
xmlns:fr="http://orbeon.org/oxf/xml/form-runner"
xmlns:ev="http://www.w3.org/2001/xml-events">
<xhtml:head>
<xhtml:title>U Form</xhtml:title>
<xforms:model id="fr-form-model">
<xforms:instance id="fr-form-instance">
<form>
<section-1>
<hello/>
</section-1>
</form>
</xforms:instance>
<xforms:bind id="fr-form-binds" nodeset="instance('fr-form-instance')">
<xforms:bind id="section-1-bind" nodeset="section-1">
<xforms:bind id="hello-bind" nodeset="hello" name="hello"/>
</xforms:bind>
</xforms:bind>
<xforms:instance id="fr-form-metadata" xxforms:readonly="true">
<metadata>
<application-name>gvhd</application-name>
<form-name>test</form-name>
<title xml:lang="en">Untitled Form</title>
<description xml:lang="en"/>
<author/>
<logo mediatype="" filename="" size=""/>
</metadata>
</xforms:instance>
<xforms:instance id="fr-form-attachments">
<attachments>
<css mediatype="text/css" filename="" size=""/>
<pdf mediatype="application/pdf" filename="" size=""/>
</attachments>
</xforms:instance>
<xforms:instance id="fr-form-resources" xxforms:readonly="true">
<resources>
<resource xml:lang="en">
<section-1>
<label>Section1</label>
<help/>
</section-1>
<hello>
<label>hello</label>
<hint/>
<help/>
<alert/>
</hello>
</resource>
</resources>
</xforms:instance>
<xforms:instance id="employees-instance">
<employees>
<employee>
<first-name>Alice</first-name>
</employee>
<employee>
<first-name>Bob</first-name>
</employee>
<employee>
<first-name>Marie</first-name>
</employee>
</employees>
</xforms:instance>
<xforms:instance id="fr-service-request-instance" xxforms:exclude-result-prefixes="#all">
<request/>
</xforms:instance>
<xforms:instance id="fr-service-response-instance" xxforms:exclude-result-prefixes="#all">
<response/>
</xforms:instance>
</xforms:model>
</xhtml:head>
<xhtml:body>
<fr:view>
<xforms:label ref="instance('fr-form-metadata')/title"/>
<fr:body>
<fr:section id="section-1-section" bind="section-1-bind">
<xforms:label ref="$form-resources/section-1/label"/>
<xforms:help ref="$form-resources/section-1/help"/>
<fr:grid columns="2">
<xforms:repeat nodeset="instance('employees-instance')/employee" id="employee-repeat">
<xhtml:tr>
<xhtml:td>
<xforms:output ref="first-name"/>
</xhtml:td>
<xhtml:td>
<xforms:output ref="first-name"/>
</xhtml:td>
</xhtml:tr>
</xforms:repeat>
<xhtml:tr>
<xhtml:td>
<xforms:input bind="hello-bind" id="hello-control">
<xforms:label ref="$form-resources/hello/label"/>
<xforms:hint ref="$form-resources/hello/hint"/>
<xforms:help ref="$form-resources/hello/help"/>
<xforms:alert ref="$fr-resources/detail/labels/alert"/>
</xforms:input>
</xhtml:td>
<xhtml:td/>
</xhtml:tr>
<xhtml:tr>
<xhtml:td>
<xforms:trigger>
<xforms:label>Add</xforms:label>
<xforms:insert ev:event="DOMActivate" context="instance('fr-form-instance')" nodeset="instance('employees-instance')/employee" at="index('employee-repeat')"
position="after"/>
</xforms:trigger>
</xhtml:td>
<xhtml:td/>
</xhtml:tr>
</fr:grid>
</fr:section>
</fr:body>
</fr:view>
</xhtml:body>
`