I've noticed that the asp ajax calendar doesn't work with safari. Something with the z-index on the dates and months. Does anyone know a work-around for this?
Hi Bbaxter,
bbaxter:
I've noticed that the asp ajax calendar doesn't work with safari. Something with the z-index on the dates and months. Does anyone know a work-around for this?
Does your application works fine on IE and Firefox?
Generally, CalendarExtender and also other controls inside the Ajax Control Toolkit will be compatible with the mainly browsers including Safari. To resolve the z-index issue, please refer to this link. http://support.microsoft.com/default.aspx?scid=kb;en-us;177378
To get the Calendar HTML element ,here is the sample
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<ajaxToolkit:CalendarExtender ID="CalendarExtender1"BehaviorID="myCEBID" runat="server" TargetControlID="TextBox1"
Format="yyyy-MM-dd" PopupButtonID="Button1"></ajaxToolkit:CalendarExtender>
<asp:Button ID="Button1" runat="server" Text="Calendar" />
<script type="text/javascript" language="javascript">
function pageLoad(){
$find("myCEBID").add_shown(onCEShown);
}
function onCEShown(){
alert($find("myCEBID")._popupDiv.outerHTML);
}
</script>
</form>
If it doesn't work, please provide a simple repro which we can use it to reproduce your issue. Thanks.
Best regards,
Jonathan
Yea, the calendar works fine in Firefox and IE. I've tried on multiple computers, I guess the control just isn't compatible with Safari.
This is still an issue. I'm using safari 3.0.2 (not that I normally do but anyways...)
on the toolkit live page the calendar shows up as a garbled mix of numbers and months.
No comments:
Post a Comment