Is it possible to 'Bold' or add HTML tags to a NOTE update by Fusion? | Community
Skip to main content
New Participant
May 16, 2023
Solved

Is it possible to 'Bold' or add HTML tags to a NOTE update by Fusion?

  • May 16, 2023
  • 1 reply
  • 963 views

Is it possible to 'Bold' or add HTML tags to a NOTE update by Fusion?

 

I need to bold a certain word in the Update text, and Fusion seems to ignore the <b> tag.

 

Is this possible?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by RandyRoberts

Here's a quick example:

{ "html": "Reminder for {{1.enteredBy.manager.name}}:<p>On {{formatDate(1.entryDate; " ddd, MMM Do")}}, {{1.enteredBy.name}} requested PTO from <p><strong>{{formatDate(1.`DE:Time Off Start Date`; " ddd, MMM Do")}}</strong> thru <strong>{{formatDate(1.`DE:Time Off End Date`; " ddd, MMM Do")}}</strong>, totaling {{1.`DE:Total Time Off Requested_`}} day(s).<p>Please respond by clicking <strong>Approve</strong> or <strong>Reject</strong> in the upper right of the linked issue page.", "tags": [ { "objID": "{{1.enteredBy.manager.ID}}", "objObjCode": "USER" } ], "objID": "{{1.ID}}", "noteText": "Please approve or decline this PTO request.", "json": "{}", "noteObjCode": "OPTASK" }

1 reply

RandyRoberts
RandyRobertsAccepted solution
New Participant
May 16, 2023

Here's a quick example:

{ "html": "Reminder for {{1.enteredBy.manager.name}}:<p>On {{formatDate(1.entryDate; " ddd, MMM Do")}}, {{1.enteredBy.name}} requested PTO from <p><strong>{{formatDate(1.`DE:Time Off Start Date`; " ddd, MMM Do")}}</strong> thru <strong>{{formatDate(1.`DE:Time Off End Date`; " ddd, MMM Do")}}</strong>, totaling {{1.`DE:Total Time Off Requested_`}} day(s).<p>Please respond by clicking <strong>Approve</strong> or <strong>Reject</strong> in the upper right of the linked issue page.", "tags": [ { "objID": "{{1.enteredBy.manager.ID}}", "objObjCode": "USER" } ], "objID": "{{1.ID}}", "noteText": "Please approve or decline this PTO request.", "json": "{}", "noteObjCode": "OPTASK" }

DaBellAuthor
New Participant
May 16, 2023

Awesome!  Thank you!