I'm using an HTML view to produce printed documentation of a supervisor's evaluation of an employee. I want the supervisor's signature to appear on the printed documentation, but I can't seem to get it to display.
The supervisor's signature is stored in a field called signature_image in the form Employees
The linkname of my HTML view is Supervisor_Visit_Record_HTML
Up near the top of the HTML view's script, I have the following:
<%{
r = Supervisory_Visits [ID == input.ID_in.toLong()];
supervisor_rec = Employees [ID == r.supervisor];
%>
Supervisory_Visits is the form that records the results of the visit. It has a field called supervisor which is the ID of that visit's supervisor in the Employees form.
Down in the HTML view, where the signature should appear, I have the following
<tr>
<td width="25%"><strong>Signature:</strong></td>
<td width="75%"><img src='https://creatorexport.zoho.com/DownloadFile.do?filepath=/<%=supervisor_rec.signature_image%>&sharedBy=<%=zoho.adminuser%>&appLinkName=<%=zoho.appname%>&viewLinkName=Supervisor_Visit_Record_HTML'></td>
</tr>
The img src is all on one line in the script -- it doesn't show as being on one line here in the forum, but it is in the script.
I'm not getting anything in that cell that should have the image.
I have confirmed that I have a signature image loaded for each of my supervisors - they do appear in a standard view when I include that field in the view.
I'm using Chrome, but I've tested this in IE and Firefox and it's no better.
Suggestions please!!
Jon