Re: 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-tp3554586p3554626.html

The same problem happen with this fr:alert-dialog component:

If I include the following code in my form, it will not show the form and application name in the summary page:
 <xhtml:td>
     <fr:alert-dialog id="confirm-change-type">
                                    <fr:label>Confirmation</fr:label>
                                    <fr:message>
                                        Are you sure you want to change the selection? The owner data will be lost.
                                    </fr:message>
                                    <fr:negative-choice>
                                        <xforms:action ev:event="DOMActivate">     
                                            //Do something                                      
                                        </xforms:action>
                                    </fr:negative-choice>
                                    <fr:positive-choice>
                                        <xforms:action ev:event="DOMActivate">
                                             //Do something
                                        </xforms:action>
                                    </fr:positive-choice>
                                </fr:alert-dialog>
                            </xhtml:td>

Note:
 If I remove this action part (<xforms:action ev:event="DOMActivate">  //Do something   </xforms:action>)  that is in the negative and positive choice, save the form and refresh the Form Builder summary page, so it will show the form and application name in the summary page.