Rich text in V2

In version 1 we use a rich text field to show the following a button with a unique path for that record.  The formula field is:  

HYPERLINK(“http://www.xxx.com/find/?action=propertydetails&query=”; & Street_Address__c &" “& Text(Street_Secondary_Unit__c) &” “& Street_Secondary_Unit_Number__c &” “& Zip_Postal__r.City__r.City__c &” “& Zip_Postal__r.State__r.State_Name__c &” “& Zip_Postal__r.Zip_Codes__c , IMAGE(”https://dorothy.com/Images/SalesForce/RPR_Logo_Only 16x14.png", “Map” , 16,14) , “MWSalesForce_single”)

How do we do this in v2?

Hi Bill, what version of Skuid are you using?

In the text component properties in the Advanced tab, you should be able to click to Allow HTML.  Let me know if you have any questions.

I put the field “{{Location__r.RPR__c}}”

This what it looks like:

<a href=“http://www.narrpr.com/find/?action=propertydetails&amp;query=506 W Franklin Avenue Naperville Illinois 60540” target=“MWSalesForce_single”><img src=“https://dorothy.com/Images/SalesForce/RPR_Logo_Only 16x14.png” alt=“Map” style=“height:16px; width:14px;” border=“0”/>

Version: Spark Update 3 (12.4.6)

Hi Bill, it looks like in v2 the text component isn’t recognizing the Salesforce formula field as HTML.

However, you can accomplish the same end result in v2 without using the formula field. You can use HTML in a text component show an image and generate the record-specific URL using merge syntax.

Here’s a simple v2 page showing how to set this up.

HTMLFormulaField_community.txt

Thanks Anna that works.