Mailto link formatting for exports
Posted: Wed Mar 20, 2013 11:13 pm
I have email addresses coming in from a BusinessObject. I would like to have these email addresses displayed in a report and hyperlinked using the mailto tag.
In the web report they look great if I do something like this in a text component:
Alternatively I can use Behavior > Interaction and place the following to get similar results.
When I export to PDF, Word or Excel though I get the full text:
Perhaps there is a condition I could use.
Thanks.
In the web report they look great if I do something like this in a text component:
Code: Select all
Email: <a href='mailto:{BusinessObject.Email}'>{BusinessObject.Email}</a>
Code: Select all
<a href='mailto:{BusinessObject.Email}'>{BusinessObject.Email}</a>
This is to be expected, but it is not the desired outcome. Ideally I'm looking for a solution that would hyperlink via mailto for the email addresses in the web report (which I have successfully done) AND display just the email address (doesn't necessarily have to be hyperlinked) in the PDF/Word/Excel exports.Email: <a href='mailto:firstname.lastname@company.com'>firstname.lastname@company.com</a>
Perhaps there is a condition I could use.
Thanks.