I've boiled this down to a very simple scenario, so it's probably me misunderstanding the intended usage. I see the problem on the following setup:
Dev environment: VS2008 on Vista Business / running application locally on "Cassini"
RadControls: ASP.NET Ajax v. 2.2.7
Browsers: IE8 and Fx 3.0.5
I have a RadDatePicker inside an UpdatePanel. After a partial postback, the calendar popup no longer works. This is part of a large application, but the problem occurs with just the following ASPX code (no modifications to the code file):
That's really all there is to it. Any pointers would be appreciated.
Thanks,
WarrenM
Dev environment: VS2008 on Vista Business / running application locally on "Cassini"
RadControls: ASP.NET Ajax v. 2.2.7
Browsers: IE8 and Fx 3.0.5
I have a RadDatePicker inside an UpdatePanel. After a partial postback, the calendar popup no longer works. This is part of a large application, but the problem occurs with just the following ASPX code (no modifications to the code file):
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Cal-Text.aspx.cs" Inherits="Cal_Text" %> |
<%@ Register TagPrefix="Rad" Namespace="Telerik.WebControls" Assembly="RadInput.Net2" %> |
<%@ Register TagPrefix="Rad" Namespace="Telerik.WebControls" Assembly="RadCalendar.Net2" %> |
<!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>Untitled Page</title> |
</head> |
<body> |
<form id="form1" runat="server"> |
<div> |
<asp:ScriptManager ID="uxScriptMan" runat="server" /> |
<asp:UpdatePanel ID="uxAdditionalChildPanel" UpdateMode="Conditional" runat="server"> |
<ContentTemplate> |
<Rad:RadDatePicker ID="uxDate" runat="server" /> |
<asp:Button ID="uxSubmit" runat='server' UseSubmitBehavior="true" Text="Submit" /> |
</ContentTemplate> |
</asp:UpdatePanel> |
</div> |
</form> |
</body> |
</html> |
That's really all there is to it. Any pointers would be appreciated.
Thanks,
WarrenM