[SalesForce] a formula field displaying an image is not working in partner community sf1, but is fine on sf desktop

a formula field displaying an image works fine in internal org and partner community salesforce desktop, but it does not on sf1 in partner community

formula

IMAGE(Photo__c, "Photo Unvailable", 200, 200)

Photo__c is a URL field, that has a following value "c.na24.content.force.com/servlet/…; for one of the records

Best Answer

This seems to be working in my org when using ImageServer instead of FileDownload. I also have the instance stuff stripped out from the start using a relative URL (may not be necessary).

As an example, I tested a URL field with this value:

/servlet/servlet.ImageServer?id=015F0000003oBk4&oid=00DF00000006hty

And a Formula field with this value:

IMAGE(Photo_URL__c, "Test", 300, 100)

This is working in my community in Salesforce1 as well as the standard desktop environments. Don't forget to include both image ID and org ID when using ImageServer!

Related Topic