I have a asp.net/c# website with the EO calendar on it....
here is the code that handle calendar:
Quote:
<eo:calendar id="CalDataLista" runat="server" controlskinid="None" daycellheight="15" daycellwidth="31" dayheaderformat="Short" disableddates="" onselectionchanged="CalDataLista_SelectionChanged" othermonthdayvisible="True" selecteddates="" titleformat="MMMM, yyyy" titleleftarrowimageurl="DefaultSubMenuIconRTL" titlerightarrowimageurl="DefaultSubMenuIcon" visibledate="2007-08-01" AutoPostbackOnSelect="True" AllowMultiSelect="False" Width="338px" >
<DisabledDayStyle CssText="color: gray"></DisabledDayStyle>
<SelectedDayStyle CssText="background-image:url('00040403');color:Brown;"></SelectedDayStyle>
<TitleArrowStyle CssText="cursor: hand"></TitleArrowStyle>
<MonthStyle CssText="cursor:hand;font-family:Verdana;font-size:8pt; margin-bottom:0px;margin-left:4px;margin-right:4px;margin-top:0px;"></MonthStyle>
<CalendarStyle CssText="BORDER-RIGHT: silver 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: silver 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; BORDER-LEFT: silver 1px solid; COLOR: #2c0b1e; PADDING-TOP: 5px; BORDER-BOTTOM: silver 1px solid; BACKGROUND-COLOR: whitesmoke">
</CalendarStyle>
<DayHoverStyle CssText="background-image:url('00040402');color:#1c7cdc;"></DayHoverStyle>
<TodayStyle CssText="background-image:url('00040401');color:#1176db;"></TodayStyle>
<FooterTemplate>
<table style="font-size: 11px; font-family: Verdana" border="0" cellSpacing="5" cellPadding="0">
<tr>
<td width="30"></td>
<td valign="center"><img src="{img:00040401}"></td>
<td valign="center">Today: {var:today:dd/MM/yyyy}</td>
</tr>
</table>
</FooterTemplate>
<TitleStyle CssText="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; FONT-SIZE: 8.75pt; PADDING-BOTTOM: 5px; COLOR: navy; PADDING-TOP: 5px; FONT-FAMILY: Verdana; BACKGROUND-COLOR: #cddcf5">
</TitleStyle>
<DayHeaderStyle CssText="border-bottom: #f5f5f5 1px solid"></DayHeaderStyle>
<DayStyle CssText="BACKGROUND-COLOR: #CCCCCC" />
<DesignOptions BackColor="#EEEEEE" />
</eo:calendar>
the problem is that with IE 6 and IE 7 everything work fine....
With firefox the clic event on the calendar date do not generates anything....
Is there anything that needs to be done in order to make it work also with firefox?
Any ideas?
Many thanks in advance.