I need to use Scheduler in order to schedule interviews, which can be made by phone or videoconference.
Unfortunately for my goal, when you double-click an event, the description appears inside a text box, and what I’m trying to accomplish is to show the description as simple html, so the user can see the phone numer and the link for the videoconference.
Something like this:
Interview John Doe
Telephone: 54545454
Videoconference link: http://mylink.com/blablabla
This way they can call the interviewer and/or click on the link to start a videoconference.
I know I can include this link in the event’s description and it would take me there, however, I need to be able to open the event description before, so the user can see the phone number as well.
I actually want to include the link like this:
<a href='http://mydomain.com?usr=543' target='_blank'>VideoConference</a>
(so the videoconference opens in a new window)
Any help will be really appreciated