I have a few text fields (not hyperlink fields) in a list that are displayed in a custom SharePoint form (SP Online). How can I make those links interactive/clickable?
Hi @kmayhew,
Would you consider using text controls to render the links? You can add a tag with this code:
fd.control('TextControl').html = '<a href="LINK">Display text</a>';
I’m still having trouble with this. The first thing I ran into was a possible conflict with some JSON formatting on the list itself, which I’ve since removed.
I tried putting this in fd.spRendered half a dozen ways (which I’ve saved and am happy to share) but I’m still getting various “undefined” errors in the console.
Could this be complicated by the fact that I’m trying to do this to a field on a tab?
Dear @kmayhew,
Please, share your code and a screenshot of the error you get it in browser's console. The example data for the field would also be nice to make sure how it needs to be transformed.