Hi,
I am using the stable version Orbeon 3.6.0. I am getting an error in the repeat action(Add and Delete) in Firefox 3.5.2. The following is my code:
<xf:repeat nodeset="<%= nodeset%>" id="repeataction">
<xf:group>
<xf:input ref="Executablename"></xf:input>
<xf:input ref="Argumentlist"></xf:input>
<xf:trigger>
<xf:label>Delete</xf:label>
<xf:delete ev:event="DOMActivate" nodeset="." at="index('repeataction')" if="index('repeataction') >1"/>
</xf:trigger>
</xf:group>
<br/>
</xf:repeat>
<xf:trigger>
<xf:label>Add</xf:label>
<xf:insert nodeset="<%= nodeset%>" ev:event="DOMActivate"/>
</xf:trigger>
And the error is :
Exception in client-side code.
* Message: newItemDelimiter is null
* File: http://localhost:8090/lct/orbeon/xforms-server/xforms-min.js
* Line number: 8031The strange thing is the same code is working fine in IE7.Please help me to resolve this issue.
Thanks,
Ingoba