Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
<a href="#" onclick="var o = getElementById('dTemplateReports'); if (o) { o.style.display = 'block';}">View my created reports</a>                      
<div id="dTemplateReports" style="display:none;">                          
[TemplateUtil.Subtemplate("PDFCatalogeReportList")]                                          
</div>

Subtemplate PDFCatalogeReportList: 

Code Block
languagexml
<style>
#ReportQueueTable td {
    padding:5px;
}
</style>
<p>PDF Catalogue Exports</p>
<input name="postfunction" type="hidden" value="reportqueuedelete" />
<input name="postvalue" id="postvalue" type="hidden" value="reportqueuedeleteid" />
<table id="ReportQueueTable">
    <!--CSSREPEAT:CVReportQueue-->
    <tr>
	<td>[CVReportQueue.RequestedDateTime]</td>
	<td>[CVReportQueue.Status]</td>
	<td>[TemplateUtil.GetReportOutputIFrameHtml("[CVReportQueue.RequestID]")]</td>
	<td><input type="submit" text="Delete" value="Delete" onclick="var o = getElementById('postvalue'); if (o) { o.value = '[CVReportQueue.RequestID]';} return true;" /></td>
    </tr>
    <!--CSSENDREPEAT:CVREPORTQUEUE-->
</table>

 

Export Catalogue Wizard Step2 Template

...