I have an ASP.NET 2.0 web application which includes RadDatePicker.
When viewing the site with FireFox, the calender picker does not work (no popup).
picture
I also get capture this MicrosoftAjax.js error with Firebug:
function Sys$CultureInfo$_getAbbrMonthIndex(value) {
if (!this._upperAbbrMonths) {
this._upperAbbrMonths = this._toUpperArray(this.dateTimeFormat.AbbreviatedMonthNames);
}
return Array.indexOf(this._upperAbbrMonths, this._toUpper(value));
}
I don't know if it's related.
On IE it's working fine.
Any ideas will be greatly appreciated.
Thx
Ofer Bar
5 Answers, 1 is accepted
After a quick search I found that it seems to be a bug in the ASP.NET AJAX framework which should already be addressed:
http://forums.asp.net/p/1090738/1634426.aspx
Best regards,
Stephen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Thanks for the reply.
I have seen this post.
Just to be sure, I installed and changed my web application to use the latest AJAX 3.5 Extensions preview, but the problem still happens.
I also installed FireFox 3 beta release and now I can get calendar popup, but it's pretty ugly and not well formatted.
So my guess is it's somewhere between FireFox and Telerik.
If you want a user name and password to our web site, please let me know so you can see it with your own eyes.
Many thanks
Ofer Bar
Nuconomy.com
There seem to be two workarounds for this error:
https://connect.microsoft.com/VisualStudio/feedback/Workaround.aspx?FeedbackID=277646
I assume this might be a culture-specific problem since it looks hard to be reproduced. If it is applicable in your case, try changing the page culture and see if the the error still occurs.
Other than that, it is definitely something in ASP.NET AJAX compatibility with Firefox. I'm afraid it should be fixed in the MS AJAX scripts (if it is not addressed yet), which Prometheus RadControls scripts (for good or bad) derive from.
Sincerely yours,
Konstantin Petkov
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
<%
@ Page Language="VB" AutoEventWireup="false" CodeFile="default2.aspx.vb" Inherits="dashboard_default2" %>
<%
@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head runat="server">
<title></title>
</
head>
<
body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<div>
<telerik:RadContextMenu ID="RadContextMenu1" Skin="Hay" runat="server">
<Items>
<telerik:RadMenuItem runat="server" Text="Edit">
</telerik:RadMenuItem>
<telerik:RadMenuItem runat="server" Text="History">
</telerik:RadMenuItem>
</Items>
</telerik:RadContextMenu>
</div>
<div style="height:200px;width:200px;border:solid 1px blue;" oncontextmenu="handleClick(event);">ASDF</div>
</form>
</
body>
</
html>
We had this problem before and we fixed it. Can you try with a more recent version please (like Q3 2009 or Q1 2010)?
Our site is still not updated with the latest bits and that is why you get the error there as well.
In addition you can check this forum post.
Best wishes,
Veskoni
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.