Welcome Guest Search | Active Topics | Sign In | Register

Calendar DayRender() - Title attribute not displayed in FireFox Options
Mike Butler
Posted: Wednesday, December 5, 2007 3:59:19 PM
Rank: Newbie
Groups: Member

Joined: 11/26/2007
Posts: 2
If you handle the DayRender event for a calendar control and add an HTML element with a title - the rendered HTML operates properly on IE but theTitle tooltip fails to display in FireFox.

I've tried this with all types of tags (b, p, ...) that have a title and hence a tooltip - all work on IE - none work on FireFox.

The event handler code looks like:
protected void Calendar1_DayRender(object sender, EO.Web.DayRenderEventArgs drea)
{
drea.Writer.WriteBeginTag("b");
drea.Writer.WriteAttribute("title", "tooltip should display on hover");
drea.Writer.Write(HtmlTextWriter.TagRightChar);
drea.Writer.Write(drea.Day.DayNumberText);
drea.Writer.WriteEndTag("b");
}
eo_support
Posted: Wednesday, December 5, 2007 4:32:59 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194
Thanks for reporting the issue. This appears to be a FireFox bug. We will see if we can find any workaround for it.


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.