Hello
it seems that Prototype is causing issues with the RadAjaxManager (2009.1)
here is a simple page
This is causing the following javascript error in the embedded resource MicrosoftAjax.js
Type.registerNamespace("Sys.WebForms");S...Sys.UI._UpdateProgress",Sys.UI.Control);
and
for(var i=0;i<ids.length;i++){
This is really annoying since everything was working fine before i update to the latest version
Regards
Philippe
it seems that Prototype is causing issues with the RadAjaxManager (2009.1)
here is a simple page
| html xmlns="http://www.w3.org/1999/xhtml"> |
| <head runat="server"> |
| <title>test</title> |
| <script type="text/javascript" src='http://www.prototypejs.org/assets/2008/9/29/prototype-1.6.0.3.js' /> |
| </head> |
| <body> |
| <form id="form1" runat="server"> |
| <telerik:RadScriptManager ID="rsm" runat="server"/> |
| <telerik:RadAjaxManager ID="ram" runat="server" EnableAJAX="true"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="btUpd"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="lb"></telerik:AjaxUpdatedControl> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| <asp:TextBox ID="txtFrom" runat="server" Width="322px" MaxLength="500"></asp:TextBox> |
| <asp:Button ID="btUpd" runat="server" Text="Update" OnClick="btUpd_Click" /> |
| <br /> |
| <asp:Label ID="lb" runat="server" /> |
| </form> |
| </body> |
| </html> |
this._form is null (on line 15)
and
ids is null (on line 2385)
Regards
Philippe