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..
- for each contact in ContactsList
- {
- contactFirst = contact.get("First Name");
- contactLast = contact.get("Last Name");
- contactID = contact.get("CONTACTID");
- contactIDURL = "http://crm.zoho.com/crm/ShowEntityInfo.do?id=" + contactID + "&module=Contacts&isload=true";
- if ((contactIDURL != null) && (contactIDURL != ""))
- { contactIDURL = (("CRM Link"; } //First_Name_Search_Email_List:ui.add(contactFirst + " " + contactLast + " "+ contactIDURL + "");
- First_Name_Search_Email_List:ui.add(contactIDURL);
- }
If anyone has any suggestions, I would appreciate it?Thanks,Liam.