I have built a dashboard that I’m embedding, just made up of tables and some filters essentially. I have some images displayed on the table, and I want to be able to add custom attributes to these images - such as title and alt-text so that if someone hovers on the image they get pertinent data.
Here’s a screenshot of some of the images on the table:
The notepad image is conditionally displayed; if the record has notes attached, show the image otherwise don’t. Here’s the calculated field which generates the image:
ifelse(
notes <> ‘’,
‘{full url}/images/notebook.png’,
‘’
)
What I’d like to ideally do is attach the notes as the title/alt text - so hover on the notepad and see the notes for the record. Is that possible? I could live with adding static title/alt text saying something like ‘Click to see notes’ and then adding an embedded action on top, but I don’t see how I can do something like that either.
So, possible or not? Thank you!