Creating the report definition
The report definition specifies the name of the report as it appears in the Reports dialog box, calls any JavaScript files required, and defines the user interface of the Settings dialog box, if needed.
To create the report definition:
- Create the file Configuration/Reports/HTML Reports/List images.htm.
- Add the following to specify the name of the report that you want to appear in the Reports dialog box in the title of the HTML page.
<html><head><title>List Images</title>
- At the end of the file, add the
scripttag and specify the Reports.js file in thesrcattribute.<script src="../Reports.js"></script>
- At the end of the file, add another
scripttag and specify the List Images.js file, which you will create next, in thesrcattribute.<html><head><title>List Images</title><script src="../Reports.js"></script><script src="List Images.js"></script>
- Close the
headtag, include opening and closingbodytags, and close thehtmltag.</head><body></body></html>
- Save the file as List images in the Configuration/Reports/HTML Reports folder.