Hi,
An alert with the message "Date is out of range" pop-ups when clicking on the "open the calendar" button.
I'm using the ASPNET AJAX Q3 2008, cannot change to the latest version nor the way of setting the culture.
You can reproduce it in this way:
Thanks in advance
An alert with the message "Date is out of range" pop-ups when clicking on the "open the calendar" button.
I'm using the ASPNET AJAX Q3 2008, cannot change to the latest version nor the way of setting the culture.
You can reproduce it in this way:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm3.aspx.cs" Inherits="Test.WebForm3" %> |
<%@ 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"> |
<div> |
<asp:ScriptManager ID="ScriptManager1" runat="server"> |
</asp:ScriptManager> |
<telerik:RadDatePicker ID="RadDatePicker1" runat="server"> |
</telerik:RadDatePicker> |
</div> |
</form> |
</body> |
</html> |
using System; |
namespace Test |
{ |
public partial class WebForm3 : System.Web.UI.Page |
{ |
protected void Page_Load(object sender, EventArgs e) |
{ |
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("dv-MV"); |
} |
} |
} |
Thanks in advance