Generate Hyperlink and Open external url using a field value as a parameter ?

SOLVED

In my Ticket screen, I need to "transform" the content or the title of one field to a hyperlink that opens an internal URL made with a static part http://myjiraurl/jira/browse/[Ticket_No]

http://myjiraurl/jira/browse/JIRA_Incident_Nr_Field_Value

As an example, this ticket would generate the following url : http://myjiraurl/jira/browse/45986

Is it possible ? Where should I implement that ?

Thank you for your advice

  • +1
    verified answer

    Hello

    Consider this

    This is a bit of JavaScript that can be added to the Custom Content box of the CompanyBoxLong to add a hyperlink to the Company Name field.  Same thing can be done for your field.

    //Custom Content - Add Google Search Hyperlink to Company Name
    crm.ready(function(){
    var fcomp_name = crm.fields("comp_name");
    var strName = fcomp_name.text();
    var strLink = "<A HREF=">www.google.com/search
    if(fcomp_name.getMode()=="view")
    {
    fcomp_name.text(strLink+escape(strName)+" target=blank>"+strName+"</a>")
    };
    })
    </script>