Salesforce App v 3.18 Update! Launch from Salesforce Flows, open record in Console sub tabs and more

Post author
Zingtree Admin
  • Edited

We’re hard at work enhancing and updating our Salesforce Application available through the App Exchange. For more details on how to configure / upload the application, you can find a complete guide here

Since this is the first post regarding these upgrades, we are including notes for the last 3 releases:

3.18 (November 2023):

We are more gracefully handling error messages when data is missing from nested object fields.

3.17 (October 2023)

Ability to open records in Console sub tabs

For Hyperlinks:

<script>
function linkMarkIntentNavigate(param) {
  event.preventDefault();
  window.parent.postMessage('sf_navigate-' + param, '*');
}
</script>

Add the following function in Tree Settings > Code

Add the following code in the Content Node Source (replace the record ID for linkMarkIntentNavigate)

<p><a href="#" onclick="linkMarkIntentNavigate('0030500000Y0PhvAAF')" 
rel="noopener noreferrer" title="">Knowledge Article</a></p>

For Buttons

Add the following function in Tree Settings > Code

<script>
function markIntentNavigate(param) {
  window.parent.postMessage('sf_navigate-' + param, '*');
}
</script>

Add the following code in the Content Node Source (replace the record ID for markIntentNavigate)

<p><a class="btn btn-success" 
onclick="markIntentNavigate('0030500000Y0PhvAAF');"
style="cursor:pointer;">Knowledge Article</a></p>

3.16 (September 2023):

  • Added the ability to Pause and Resume at the component level (great for starting a new session when used on the Account record)
  • Users can set the height of a tree at the component level (if left empty, default is 850 pixels)
  • Added the ability to embed the Zingtree component on the “Home Page”

In earlier versions, we added the ability to add Zingtree to Salesforce Flows!

Comments

0 comments

Please sign in to leave a comment.