PDF does not show data

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

PDF does not show data

                                                                                                                                                                                                                                                                                                        </xf:repeat>



That works very well except when we retrieve the PDF of the form using https://[orbeonformsurl]/forms/fr/[app]/[form]/pdf/[document]?fr-language=[language]

The repeat part does not show in the pdf.

Any way to fix this. I've included the form in attachment.

form.xhtml
sjdmulde
Hello,

We have a table that we populate using a <xf:submission form that retrieves data from a a Rest service call. e.g.

             <xf:submission id="EmployeeService-submission"
                           resource="http://s40jsvctst03.securex-intranet.be:6331/orbeonformsservice/api/firm/{xxf:get-request-parameter('firmNumber')}/employees?language={xxf:get-request-parameter('fr-language')}"
                           method="get"
                           serialization="none"
                           mediatype="none"
                           replace="instance"
                           instance="EmployeeService-instance"/>

and

<xf:repeat id="employee-repeat" ref="instance('EmployeeService-instance')/*">
                                       

                                                <xf:output ref="concat(fadNumber,' - ',firmId,' - ',fullAddress)" mediatype="text/html"/>

                                           


                                                <xf:output ref="concat(firstName,' ',lastName)" mediatype="text/html"/>
                                           
                                                <xf:output ref="fdcp" mediatype="text/html"/>
                                           
                                                <xf:output ref="startDate" mediatype="text/html"/>
                                           
                                                <xf:output ref="endDate" mediatype="text/html"/>