HI, ive tried numerous ways to do so, to no success. I have two things id like to do.
I AM USING LIVECALENDER WIDGET
1) Id like <td> that doesnt have an event to have no <a>.
Here is the code thats on place as we speak. Displays TEST5 (title tage) on ALL td. Normal, code below dictates this.
<tbody>
<% control Weeks %>
<tr>
<% control Days %>
<td id="evenements" class="$Today $OutOfMonth $CurrentDay $HasEvent">
<a href="calendrier" title="TEST5">$Number</a>
</td>
<% end_control %>
</tr>
<% end_control %>
</tbody>
Ive tried
<tbody>
<% control Weeks %>
<tr>
<% control Days %>
<% if Events %>
<td id="evenements" class="$Today $OutOfMonth $CurrentDay $HasEvent">
<a href="calendrier" title="TEST5">$Number</a>
</td>
<% else %>
<td>$Number</td>
<% end_control %>
</tr>
<% end_control %>
</tbody>
I am getting errors from this code.
2) Id like $_Event_Title (or any customs textfields) to show on hover
Here is the code thats on place as we speak. Displays TEST5 (title tag) onhover. Normal, code below dictates this.
<a href="calendrier" title="TEST5">$Number</a>
When i try any code that starts with $ (be ity $Title, $_Title, $Date etc) , it misbehaves : some tds are disapearing.
<a href="calendrier" title="$Event.Title">$Number</a>
also tried
<a href="calendrier" title="<% control Event %>$Event.Title"<% end_control %>$Number</a>
no results either.
Thanks for helping!