Opening Attached Files

The CT Mobile app allows opening the attached files in a native window. The opened files may be sent to an email address.

To open the PDF file, for example,filename.pdf from attachments of the CLM presentation:

<a href="filename.pdf">Link to file</a>

To open a file from the sources.zip with the filename name:

window.open(filename)

This method also works via the Remote Detailing session.

To open any file from the sources.zip, use the following according to the path:

src="file.pdf"

src="folder/image.png"

Also, it is possible to launch the script from the sources.zip using the path to it:

<script src="js/hammer.js"></script>

It is possible to open files that are locally stored in the Libraries module. The file name should be written without spaces.

Opens the file from the Libraries module with the 15Mb.mp4 file name:

<a href="15Mb.mp4">Open file from Libraries</a>
``