Picklist (Checkbox items) to contain clickable URLs

Picklist (Checkbox items) to contain clickable URLs

I expect it's a bit of a violation of things...but I would like to be able to put a series of URLs/Web Addresses as items in a Checkbox list...and allow the user to click on them to open records in other locations (in this case Zoho CRM). I set target to '_blank' so that they open in a new tab. In each item, I put a persons first name, last name, and then the clickable link.The code below 'sorta works'...I do get something clickable...but there is quite a bit of unwanted extra info...here is an example of what appears where I was hoping a nice tidy clickable link would be...CRM Link" delugeType="STRINGLIST" fieldtype="13" id="checkboxesEl_First_Name_Search_Email_List_CRM Link_1" formCompID="189323000000597165" onChangeExists="true"/>CRM Link_1">CRM LinkHere's some code that might explain..

  1. for each contact in ContactsList
  2. {
  3.     contactFirst = contact.get("First Name");
  4.     contactLast = contact.get("Last Name");
  5.     contactID = contact.get("CONTACTID");
  6.     contactIDURL = "http://crm.zoho.com/crm/ShowEntityInfo.do?id=" + contactID + "&module=Contacts&isload=true"; 
  7.    if ((contactIDURL !=  null)  &&  (contactIDURL !=  ""))    
  8.       {        contactIDURL = (("CRM Link";    }    //First_Name_Search_Email_List:ui.add(contactFirst + " " + contactLast + " "+ contactIDURL + ""); 
  9.    First_Name_Search_Email_List:ui.add(contactIDURL);
  10. }


If anyone has any suggestions, I would appreciate it?Thanks,Liam.