Skip to main content
Nintex Community Menu Bar
Question

Show a Skuid Photo in one column of a normal table.

  • July 9, 2024
  • 8 replies
  • 3 views
  • Translate

Forum|alt.badge.img+5

Hello, I want to know can i show photo in my tab page.I want to show the Skuid Photo with all the records.So can we use Skuid Photo in Table with the list of records. PFA one image for what exactly i want. b46f622020e8ed49a0a95480cd2a3fc519246724.png Here in Skuid Photo currently only name is coming of the file it is not showing photo.So can we show photo here for each record? Please reply back soon, Thanks. Arpit

Did this topic help you find an answer to your question?
This topic has been closed for comments

8 replies

Forum|alt.badge.img+17
  • Nintex Employee
  • 3763 replies
  • July 9, 2024

You can include a reference to the specific image file and retrieve the image iself rather than the file name (in the green bar).

  1. Drag a template field into your table
  2. Make sure the “Allow HTML” property is selected.
  3. In the Template property area include text that looks like this:

servlet.FileDownload?file=%7B%7B%7BImage__r.skuid__AttachmentId__c%7D%7D%7D

A few notes here.

  • To ensure that the path to the file is correct, go to a detail page where the image is displayed and select the image and copy its url. It should look somthing like this: https://skuid.na15.visual.force.com/servlet/servlet.FileDownload?file=00Pi0000001lHZoEAM . You should grab the section between force.com/ and the ID. I don't think it will be different, but just in case.
  • You can select the specific attachment ID field with the template field selector (Boxes Icon). Remember that the attachment ID needs to be a field in your model.
  • Make sure there are triple braces {{{ around the field. This will show the field literally, rather than trying to interpret it.
  • I add a specific height to the tempate to make all images consistent. You can adjust that to make things look right.
Then you can stand back and enjoy...
Translate

Forum|alt.badge.img+5
  • Author
  • 30 replies
  • July 9, 2024

Thanks so much it works ! !

Translate

Forum|alt.badge.img+2

Thanks, this is great. Is there a way to wrap a code around this to show no image if there is nothing in the image field. Currently it includes a place holder square where the image should be.

Translate

Forum|alt.badge.img+10
  • 189 replies
  • July 9, 2024

Hey Stephen,
Others can likely give you a much more complete answer but this may get you on the right trail tonight. Under the Skuid developer guide there is a link called Skuid Template Syntax. Read the whole article for a better understanding of the power of templates, but the part called “Sections” is what you are after.

Below are 3 examples to get the place holder square to go away.

In Rob’s example he had you enter:

servlet.FileDownload?file=%7B%7B%7BImage__r.skuid__AttachmentId__c%7D%7D%7D

Example 1:
To conditionally render the logo only IF there is actually a logo uploaded you would simply wrap Rob’s code with one extra line before his code and one closing line after his code. This would either show a logo or nothing.

{{#Image__r.skuid__AttachmentId__c}}
servlet.FileDownload?file=%7B%7B%7BImage__r.skuid__AttachmentId__c%7D%7D%7D{{/Image__r.skuid__AttachmentId__c}}

Example 2:
Instead of having a blank area you may want to put in some place holder text. For instance in this case you might want to add some free hand text like “No Logo on File”:

{{^Image__r.skuid__AttachmentId__c}}No Logo on File{{/Image__r.skuid__AttachmentId__c}}
{{#Image__r.skuid__AttachmentId__c}}
servlet.FileDownload?file=%7B%7B%7BImage__r.skuid__AttachmentId__c%7D%7D%7D{{/Image__r.skuid__AttachmentId__c}}

Example 3:
OR even better, using the building block field picker to the right of the template editor you can insert a dynamic field of your choice from your Model, like the Record name {{Name}} and the word Logo.

{{^Image__r.skuid__AttachmentId__c}}{{Name}}'s Logo{{/Image__r.skuid__AttachmentId__c}}
{{#Image__r.skuid__AttachmentId__c}}
servlet.FileDownload?file=%7B%7B%7BImage__r.skuid__AttachmentId__c%7D%7D%7D{{/Image__r.skuid__AttachmentId__c}}

The above example would return something like “Acme’s Logo” if there was no logo on file. I think of it as an If Then statement. The documentation in the link I gave you is much better than I described here but hopefully this gets you on the road.

Hope that helps.
Rich

Translate

Forum|alt.badge.img+2

Thanks again Rich !!!

Translate

Forum|alt.badge.img+7

I am trying to do this in a field editor and the skuid photo is many objects deep. I do not see the image. Any ideas?

TEMPLATE:
!(/servlet/servlet.FileDownload?file={{{MMA_Academy_Student_Event_Performer r.MMA_Student_Record r.Contact r.skuid_Photo c}}})


Translate

Forum|alt.badge.img+7

Oops–sorry. I see that I did not attach the Attachment Id.

servlet.FileDownload?file=%7B%7B%7BMMA_Academy_Student_Event_Performer__r.MMA_Student_Record__r.Contact__r.skuid_Photo__r.skuid__AttachmentId__c%7D%7D%7D

It works! Brilliant!!!

Translate

Forum|alt.badge.img+8

Try this as your merge variable…
servlet.FileDownload?file=%7B%7B%7BMMA_Academy_Student_Event_Performer__r.MMA_Student_Record__r.Contact__r.skuid_Photo__r.skuid__AttachmentId__c%7D%7D%7D

Translate

Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie Settings