I'm attempting to evaluate the Telerik controls for ASP.NET AJAX. I'm coming from being a fairly long time user of a competing control suite that supposedly works with ASP.NET AJAX, but my experience with it has been very troublesome, moving from one bug to another.
I have installed the latest trial version of the RadControls (downloaded the new version today) and I am also using the April 12th release of the ASP.NET AJAX Control Toolkit. Initially, I was receiving script errors complaining about the need for the .NET 4.0 scripts for the control toolkit, but I eventually found the solution to that problem on these forums by adding script reference to the RadScriptManager like this:
That RadScriptManager is on a WebForm. I have a User Control on that form as well. On that User Control I placed a RadGrid. I was able to get everything working just fine with little issue.
However, I then wanted to ajaxify the RadGrid. Initially, I placed a RadAjaxManager on the User Control and configured the Grid to intiate Ajax requests and be updated by then, like so:
Now, when I click on anything on the grid I get script errors "Object doesn't support this propery or method" referencing a line number in Telerik.Web.UI.WebResource.axd.
I tried putting the RadAjaxManager on the WebForm (rather than the control) and placing a RadAjaxManagerProxy on the control, but this results in the same error.
I am running Visual Studio 2008 on Windows Vista and using ASP.NET 3.5. I'm using the 3.5 version of the RadControls and the 3.5 version of the AJAX Control Toolkit as well.
I would really appreciate any help you can give me in what might be causing this problem as I can't continue to evaluate the product until I get past this issue.
Thank You!
I have installed the latest trial version of the RadControls (downloaded the new version today) and I am also using the April 12th release of the ASP.NET AJAX Control Toolkit. Initially, I was receiving script errors complaining about the need for the .NET 4.0 scripts for the control toolkit, but I eventually found the solution to that problem on these forums by adding script reference to the RadScriptManager like this:
<telerik:RadScriptManager ID="RadScriptManager1" runat="server"> |
<Scripts> |
<asp:ScriptReference Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" |
Name="MicrosoftAjax.js" Path="~/Scripts/MicrosoftAjax.js" /> |
<asp:ScriptReference Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" |
Name="MicrosoftAjaxWebForms.js" Path="~/Scripts/MicrosoftAjaxWebForms.js" /> |
</Scripts> |
</telerik:RadScriptManager> |
That RadScriptManager is on a WebForm. I have a User Control on that form as well. On that User Control I placed a RadGrid. I was able to get everything working just fine with little issue.
However, I then wanted to ajaxify the RadGrid. Initially, I placed a RadAjaxManager on the User Control and configured the Grid to intiate Ajax requests and be updated by then, like so:
<AjaxSettings> |
<telerik:AjaxSetting AjaxControlID="grd"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="grd" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
</AjaxSettings> |
Now, when I click on anything on the grid I get script errors "Object doesn't support this propery or method" referencing a line number in Telerik.Web.UI.WebResource.axd.
I tried putting the RadAjaxManager on the WebForm (rather than the control) and placing a RadAjaxManagerProxy on the control, but this results in the same error.
I am running Visual Studio 2008 on Windows Vista and using ASP.NET 3.5. I'm using the 3.5 version of the RadControls and the 3.5 version of the AJAX Control Toolkit as well.
I would really appreciate any help you can give me in what might be causing this problem as I can't continue to evaluate the product until I get past this issue.
Thank You!