Hello,
I have a simple page with telerik RadAjaxPanel and a RadComboBox. I also need the Ajax toolkit (ver 4) so I refer to the scripts (MicrosoftAjax.js etc). The combobox has autopostback enabled. The error is (when EnableScriptCombine="False"):
Line: 183
Error: Object doesn't support this property or method
If I remove the ajax toolkit script reference it works (or dont have autopostback on the combo), so what do I do wrong when I combine them?
Best regards, Petter.
    
                                I have a simple page with telerik RadAjaxPanel and a RadComboBox. I also need the Ajax toolkit (ver 4) so I refer to the scripts (MicrosoftAjax.js etc). The combobox has autopostback enabled. The error is (when EnableScriptCombine="False"):
Line: 183
Error: Object doesn't support this property or method
If I remove the ajax toolkit script reference it works (or dont have autopostback on the combo), so what do I do wrong when I combine them?
Best regards, Petter.
| <%@ Page Language="VB" AutoEventWireup="false" CodeFile="pf3.aspx.vb" Inherits="pf3" %> | 
| <%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="asp" %> | 
| <!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"> | 
| <telerik:RadScriptManager ID="RadScriptManager1" Runat="server" | 
| EnableScriptCombine="False" > | 
| <Scripts> | 
| <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" /> | 
| <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" /> | 
| <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js" /> | 
| <asp:ScriptReference Assembly="System.Web.Extensions" Name="MicrosoftAjax.js" Path="~/Scripts/MicrosoftAjax.js" /> | 
| <asp:ScriptReference Assembly="System.Web.Extensions" Name="MicrosoftAjaxWebForms.js" Path="~/Scripts/MicrosoftAjaxWebForms.js" /> | 
| </Scripts> | 
| </telerik:RadScriptManager> | 
| <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" height="200px" width="300px"> | 
| <telerik:RadComboBox ID="RadComboBox1" Runat="server" AutoPostBack="True"> | 
| <Items> | 
| <telerik:RadComboBoxItem runat="server" Text="RadComboBoxItem1" | 
| Value="RadComboBoxItem1" /> | 
| <telerik:RadComboBoxItem runat="server" Text="RadComboBoxItem2" | 
| Value="RadComboBoxItem2" /> | 
| </Items> | 
| </telerik:RadComboBox> | 
| </telerik:RadAjaxPanel> | 
| </form> | 
| </body> | 
| </html> |