Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The best way to troubleshoot these types of export problems is to start simplifying the definition file so that you can easily isolate the issue. For your reports, I might start by remarking the MoreInfoRow so that it's effectively not impacting the export.</p> <p>-Does the report export to PDF once the MoreInfoRow is gone? If yes, the we can assume the problem has to do with the MoreInfoRow. If no, then there is a different issue. If you've removed the MoreInfoRow and it still doesn't export properly, I might guess that the problem is either : 1) You're passing incorrect showmodes with the export or 2) the report requires parameters to be passed with the Action PDF as well that aren't getting set properly.</p> <p>For additional details on ShowModes, I'd visit:</p> <p><a href="http://devnet.logixml.com/rdPage.aspx?rdReport=Article&amp;dnDocID=1043" rel="nofollow">http://devnet.logixml.com/rdPage.aspx?rdReport=Article&amp;dnDocID=1043</a></p> <p>If the MoreInfoRow is the problem, you might try simplifying the report, in general. Here's a quick example that you can try:</p> <pre><code>&lt;Report ID="Default" SavedBy="test"&gt; &lt;StyleSheet Theme="SimpleBlue" /&gt; &lt;Body&gt; &lt;Label Caption="Export PDF" Class="ThemeLinkButton"&gt; &lt;Action Type="PDF"&gt; &lt;Target Type="PDF" KeepShowElements="True" Report="CurrentReport" /&gt; &lt;/Action&gt; &lt;/Label&gt; &lt;LineBreak LineCount="3" /&gt; &lt;DataTable ID="dtExport" Width="450"&gt; &lt;DataLayer Type="Static" ID="myData1"&gt; &lt;StaticDataRow id="001" name="Sample Row 1" /&gt; &lt;StaticDataRow id="002" name="Sample Row 2" /&gt; &lt;StaticDataRow id="003" name="Sample Row 3" /&gt; &lt;/DataLayer&gt; &lt;DataTableColumn ID="colid" Header="id"&gt; &lt;Label ID="lblid" Caption="@Data.id~"&gt; &lt;Action Type="ShowElement" ElementID="mirTest" ID="actShowMir" /&gt; &lt;/Label&gt; &lt;/DataTableColumn&gt; &lt;DataTableColumn ID="colname" Header="name"&gt; &lt;Label ID="lblname" Caption="@Data.name~" /&gt; &lt;/DataTableColumn&gt; &lt;MoreInfoRow ShowModes="None" ID="mirTest"&gt; &lt;Label Caption="This is the More Info Row" /&gt; &lt;/MoreInfoRow&gt; &lt;/DataTable&gt; &lt;/Body&gt; &lt;/Report&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload