For the complete documentation index, see llms.txt. This page is also available as Markdown.

How to: Place Images in Columns

This page will guide the user through generating a related list and generating images from that related list.

Prerequisites:

Before proceeding, the user should have:

  • The permissions to create and edit S-Docs Templates

  • An Object Record with Images store in a related list

Instructions:

We will showcase this by pulling images from the Files related list on an object record

<table>
	<tbody>
		<tr><!--{{!
<lineitemsSOQL>
<class>none</class>
<soql>select ContentDocument.latestpublishedversionid, ContentDocument.LatestPublishedVersion.pathonclient from contentdocumentlink where  LinkedEntityId='{!ObjectID15}' AND (ContentDocument.LatestPublishedVersion.pathonclient LIKE'%.png%')
</soql>
<column newrow="X" type="rtf" prefix="<td><img src='" postfix="' width='150px'
style='border:2px solid black;' /></td>">ContentDocument.latestpublishedversionid</column>
</lineitemsSOQL>
}}-->
		</tr>
	</tbody>
</table>

Replace “X” in newrow="X" with the number of columns to be displayed. !ObjectId15 can be replaced with the object ID of the related list where the images are being pulled from.

Last updated

Was this helpful?