I have been using a Scheduler with a ToolTipManager to provide formatted tooltips when users hover over an appointment. I am also applying custom styles to appointments. This was all working fine until I updated to the Q3 release. Now, when the scheduler is rendered, none of the styles are applied to the appointments. I did a little digging, and I found that the html rendering for the appointments seems to be breaking.
The tooltip manager builds the tooltip in code-behind and inserts html formatting elements, then adds the text for the tooltip to the appointment's tooltip property. When this is rendered to html, I now get something that looks like the following. I am not positive this is the source of my problem, but the styles as they appear below are exactly like the sample code and worked fine until the update. Any help I can get with this would be greatly appreciated, as I am running up against a very tight release deadline.
The tooltip manager builds the tooltip in code-behind and inserts html formatting elements, then adds the text for the tooltip to the appointment's tooltip property. When this is rendered to html, I now get something that looks like the following. I am not positive this is the source of my problem, but the styles as they appear below are exactly like the sample code and worked fine until the update. Any help I can get with this would be greatly appreciated, as I am running up against a very tight release deadline.
<div id="rsWork_2_0" title="Sondertermin heute
<br />Here is some formatted text.<br /><br />
" class="rsApt Ereignis" style="height:50px;width:90%;left:0%;">
<div class="rsAptOut">
<div class="rsAptMid">
<div class="rsAptIn">
<div class="rsAptContent">
<div style="cursor:pointer;font-size:9px;width:100%;">
<span id="rsWork_ctl133_lblSubject" class="CalSubject">Sondertermin heute</span>
</div>
<a class="rsAptDelete" href="#">delete</a>
</div>
</div>
</div>
</div>
</div>
</div>