Form Builder - When using xxforms:iterate, the summary page doesn't show form name

Posted by inanda.menezes on
URL: https://discuss.orbeon.com/Form-Builder-When-using-xxforms-iterate-the-summary-page-doesn-t-show-form-name-tp3554586.html

When using xxforms:iterate, the Form Builder summary page does not show the application name and the form name.

Code:

<xforms:select1 appearance="full" bind="options-bind" id="options-control">
                                    <xforms:label ref="$form-resources/options/label"/>
                                    <xforms:hint ref="$form-resources/options/hint"/>
                                    <xforms:help ref="$form-resources/options/help"/>
                                    <xforms:alert ref="$fr-resources/detail/labels/alert"/>
                                    <xforms:action ev:event="xforms-value-changed">
                                         <xforms:setvalue xxforms:iterate="instance('fr-form-instance')/sample-data/*[not(name()='options')]"
                                                         ref="."/>
                                    </xforms:action>
                                    <xforms:itemset nodeset="$form-resources/options/item">
                                        <xforms:label ref="label"/>
                                        <xforms:value ref="value"/>
                                    </xforms:itemset>
                                </xforms:select1>

If I remove the xxforms:iterate, save the form and refresh the Form Builder summary page, it will show the form name and the application name.

It also happened to me in another situation that I could not identify the reason.

Note: After open the form, the name of the form is shown in the toolbar/Metadata option. The problem is only in the summary page.

Why does it happen? Is there a way to use xxforms:iterate in Form Builder without this problem?
There is one sampleForm.xhtmlform that I created as a test attached to this topic.