Custom Popup Opened from Table Cell

Ralph: 

To attach the onclick action to the text in the field, and to make that text underlined,  adjust Zach’s first snippet by removing the whole second half (After the “If not in edit mode” comment with code that looks like this: 

// If not in edit mode, add an icon that will trigger a popupif (field.mode !== 'edit'){<br>&nbsp; &nbsp; field.element.on('click',showContactInfoPopup);<br>&nbsp; &nbsp; field.element.addClass("UnderlineLink");<br>}



You also need to add a CSS resource with this code:  

.UnderlineLink {text-decoration: underline;} &nbsp;&nbsp;


If you want you can add that class to another CSS resource. 

That should get you running.