Versions Compared

Key

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

Overview

Images need to

...

have a URL to be added into a Report Template.

Steps

...

  1. Open the Report Template Update page (click here for steps)
  2. Click in the report body where the image is to be placed
  3. Click the Insert/edit Image button Image Added
  4. In the Source field enter the URL for the image
  5. Optionally, enter an image description
  6. Adjust the image dimensions, if needed
  7. Click Ok



Tip

The image should be on a secure server (https) to keep the windows security box from displaying

...

  1. Click on the image
  2. In the bottom right a Properties icon will display
  3. Click on the properties icon
  4. The Properties window will display
  5. Enter/edit the properties
  6. Click OK

...

Using an image in skip logic (example)

The following code would be pasted into the Design tab of the report template

<%
 if (#image==0) Output.Write("<img src='https://dl.dropbox.com/u/13090636/Contact%20Management/StartupSide1.png'>");

 else if (#image==1) Output.Write("<img src='https://dl.dropbox.com/u/13090636/Contact%20Management/StartupSide2.png'>");

%>

Note

Before pasting any code or text into the Design tab of a Report Template, first paste the content into Notepad to strip the formatting

Alternately, the following code could be pasted into the HTML tab of the report template

Info

This method is more complicated and adding the code directly into the Design tab is recommended

...