Hi,
I'd like to send hyperlinks from Creator to CRM (in a multiline text field).
The result in CRM is :
<a target="_blank" href="https://creator.zoho.com/account/app/view-perma/Actions_view/Zoho_ID=454220000000064827">Clic here</a>
And when I clic on edit (in CRM), I get it :
<a target="_blank" href="https://creator.zoho.com/account/app/view-perma/Actions_view/Zoho_ID=454220000000064827">Clic here</a>
This is working well when I copy-paste this code directly in CRM, but it desappear when I come back:
<a target="_blank" href="https://creator.zoho.com/account/app/view-perma/Actions_view/Zoho_ID=454220000000064827">Clic here</a>
My code in Creator is :
- strContactID = a.Zoho_ID.toString();
- strURL = (("<a target=\"_blank\" href=\"https://creator.zoho.com/account/app/view-perma/Actions_view/Zoho_ID=") + a.Zoho_ID) + "\">Cliquer ici</a>";
- resp = zoho.crm.updateRecord("Contacts", strContactID, { "Détails, accès aux campagnes" : strURL });
What is the best way to have it work ?
Thanks for any tips.
Pascal Veilleux