Skip to main content
Nintex Community Menu Bar
Solved

Rich text in V2

  • July 11, 2024
  • 5 replies
  • 38 views

Forum|alt.badge.img+14

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?

Best answer by annajosephine

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.

5 replies

annajosephine
Nintex Employee
Forum|alt.badge.img+18
  • Nintex Employee
  • July 11, 2024

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.


Forum|alt.badge.img+14
  • Author
  • July 11, 2024

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”/>


Forum|alt.badge.img+14
  • Author
  • July 11, 2024

Version: Spark Update 3 (12.4.6)


annajosephine
Nintex Employee
Forum|alt.badge.img+18
  • Nintex Employee
  • Answer
  • July 11, 2024

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.


bill.fox
Forum|alt.badge.img+7
  • Rookie
  • July 11, 2024

Thanks Anna that works.