Skip to main content

I have a simple template field that displays an image.

There is an HTML link on the template that opens the image in a new tab.

My users would prefer to open this image in a popup box.

Is this possible?


Here is how I have it setup currently:
<a href=“https://c.na10.content.force.com/servlet/servlet.FileDownload?file={{{xxxx}}}; target=”_blank"><img src="https://c.na10.content.force.com/servlet/servlet.FileDownload?file={{{xxxx}}};>

Sure. If not a row action, then a custom field renderer.


Easier though would be to use this. Not entirely sure this will work.


<a href=“javascript:window.open(‘https://c.na10.content.force.com/servlet/servlet.FileDownload?file={{{xxxx}}}’,‘Image Title’,‘width=500,height=150’)”>


Thanks Pat!
It works well.
Where can I get some info on Custom Field Renderers?


Here’s a start: http://help.skuidify.com/m/11720/l/214147-skuid-ui-field-renderers


Reply