
thepilsbury
Top achievements
Rank 1
thepilsbury
asked on 31 May 2007, 03:24 PM
I'm trying to use the AjaXManager control on a content page that is linked to a master page however it will not display in the browser - I get the message "Object reference not set to an instance of an object." The interesting thing is that the same code works in a standard aspx page (ie one that is not linked to a master page).
The aspx code for the master page is:
The code for the content page is:
The code for the page not linked to a master is:
The RadTreeView1_OnNodeClick event just sets the innerHTML of the testDiv container with the node text.
All this works fine both within the master/content page and standalone page scenarios without the Ajax Manager control. As soon as this is put in I get the error message appear with the master/content page.
Your help is very much appreciated.
The aspx code for the master page is:
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Master1.master.cs" Inherits="Master1" %> |
<%@ 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>Untitled Page</title> |
</head> |
<body scroll="no"> |
<form id="form1" runat="server"> |
<div> |
<asp:ScriptManager ID="ScriptManager1" runat="server"> |
</asp:ScriptManager> |
<telerik:RadSplitter ID="RadSplitter1" runat="server" FullScreenMode="True" Height="100%" |
Orientation="Horizontal" Skin="Blue" Width="100%"> |
<telerik:RadPane ID="TopPane" runat="server" EnableEmbeddedSkins="False" |
Index="0" Scrolling="None" Width="100%" Height="50px"> |
</telerik:RadPane> |
<telerik:RadPane ID="MainPane" runat="server" EnableEmbeddedSkins="False" Height="" |
Index="1" Scrolling="None" Width=""> |
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server"> |
</asp:ContentPlaceHolder> |
</telerik:RadPane> |
<telerik:RadPane ID="FooterPane" runat="server" Height="20px"> |
</telerik:RadPane> |
</telerik:RadSplitter> |
</div> |
</form> |
</body> |
</html> |
The code for the content page is:
<%@ Page Language="C#" MasterPageFile="~/Master1.master" AutoEventWireup="true" CodeFile="page linked to master1.aspx.cs" |
Inherits="Default2" Title="Untitled Page" %> |
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
<%@ Register Assembly="RadTreeView.Net2" Namespace="Telerik.WebControls" TagPrefix="radT" %> |
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server"> |
<telerik:RadSplitter ID="RadSplitter2" runat="server" Height="100%" items-capacity="4" |
Skin="Blue" SplitBarsSize="" Width="100%"> |
<telerik:RadPane ID="NavigationPane" runat="server" EnableEmbeddedSkins="False" Height="" |
Index="0" Width="20%"> |
<div> |
<radT:RadTreeView ID="RadTreeView1" runat="server" AutoPostBack="true" OnNodeClick="RadTreeView1_OnNodeClick"> |
<Nodes> |
<radT:RadTreeNode Text="one"> |
</radT:RadTreeNode> |
<radT:RadTreeNode Text="two"> |
</radT:RadTreeNode> |
</Nodes> |
</radT:RadTreeView> |
</div> |
</telerik:RadPane> |
<telerik:RadSplitBar ID="RadSplitBar2" runat="server" EnableEmbeddedSkins="False" |
Index="1" /> |
<telerik:RadPane ID="ContentPane" runat="server" EnableEmbeddedSkins="False" Height="" |
Index="2" Scrolling="None" Width=""> |
<div> |
<div id="divTest" runat="server"> |
</div> |
</div> |
</telerik:RadPane> |
</telerik:RadSplitter> |
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> |
<AjaxSettings> |
<telerik:AjaxSetting AjaxControlID="RadTreeView1"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="divTest" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
</AjaxSettings> |
</telerik:RadAjaxManager> |
</asp:Content> |
The code for the page not linked to a master is:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ajaxmanager.aspx.cs" Inherits="ajaxmanager" %> |
<%@ Register Assembly="RadAjax.Net2" Namespace="Telerik.WebControls" TagPrefix="radA" %> |
<%@ Register Assembly="RadTreeView.Net2" Namespace="Telerik.WebControls" TagPrefix="radT" %> |
<%@ 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>Untitled Page</title> |
</head> |
<body> |
<form id="form1" runat="server"> |
<asp:ScriptManager ID="ScriptManager1" runat="server"> |
</asp:ScriptManager> |
<div> |
<telerik:radsplitter id="RadSplitter2" runat="server" height="100%" items-capacity="4" |
skin="Blue" splitbarssize="" width="100%"> |
<telerik:RadPane ID="NavigationPane" runat="server" EnableEmbeddedSkins="False" Height="" |
Index="0" Width="20%"> |
<div> |
<radT:RadTreeView ID="RadTreeView1" runat="server" AutoPostBack="true" OnNodeClick="RadTreeView1_OnNodeClick"> |
<Nodes> |
<radT:RadTreeNode Text="one"> |
</radT:RadTreeNode> |
<radT:RadTreeNode Text="two"> |
</radT:RadTreeNode> |
</Nodes> |
</radT:RadTreeView> |
</div> |
</telerik:RadPane> |
<telerik:RadSplitBar ID="RadSplitBar2" runat="server" EnableEmbeddedSkins="False" |
Index="1" /> |
<telerik:RadPane ID="ContentPane" runat="server" EnableEmbeddedSkins="False" Height="" |
Index="2" Scrolling="None" Width=""> |
<div> |
<div id="divTest" runat="server"> |
</div> |
</div> |
</telerik:RadPane> |
</telerik:radsplitter> |
</div> |
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> |
<AjaxSettings> |
<telerik:AjaxSetting AjaxControlID="RadTreeView1"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="divTest" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
</AjaxSettings> |
</telerik:RadAjaxManager> |
</form> |
</body> |
</html> |
The RadTreeView1_OnNodeClick event just sets the innerHTML of the testDiv container with the node text.
All this works fine both within the master/content page and standalone page scenarios without the Ajax Manager control. As soon as this is put in I get the error message appear with the master/content page.
Your help is very much appreciated.
27 Answers, 1 is accepted
0
Hello thepilsbury,
The Prometheus AjaxManager has never been intended to work from nested pages, i.e. user controls or content pages. You need to place it on the MasterPage and set the AjaxSettings relations from there:
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" EnableAJAX="false">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="ContentPlaceHolder1$RadTreeView1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="ContentPlaceHolder1$divTest" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
Sincerely yours,
Steve
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
The Prometheus AjaxManager has never been intended to work from nested pages, i.e. user controls or content pages. You need to place it on the MasterPage and set the AjaxSettings relations from there:
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" EnableAJAX="false">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="ContentPlaceHolder1$RadTreeView1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="ContentPlaceHolder1$divTest" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
Sincerely yours,
Steve
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0

thepilsbury
Top achievements
Rank 1
answered on 04 Jun 2007, 09:23 AM
Thanks for your response. I've tried your suggestion but unfortunately it doesn't work. The postback requests are not ajax ones. If I click on an item in the treeview the whole page is refreshed not just the div content.
Any suggestions?
Any suggestions?
0
Hi thepilsbury,
Sorry, my fault. The code and approach is correct, I have just forgotten the EnableAjax property set to false in the code I have pasted, while it should be true if we want to have ajax :) Just tested again on my machine and it works as expected.
Kind regards,
Steve
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Sorry, my fault. The code and approach is correct, I have just forgotten the EnableAjax property set to false in the code I have pasted, while it should be true if we want to have ajax :) Just tested again on my machine and it works as expected.
Kind regards,
Steve
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0

thepilsbury
Top achievements
Rank 1
answered on 05 Jun 2007, 07:55 AM
Working just fine now - many thanks for your help.
0

goyaweb
Top achievements
Rank 2
answered on 08 Jun 2007, 04:48 PM
I'm having same problem and applied the suggested approach which results to the following javascript popup error:
"Sys.InvalidOperationException: Could not find UPdatePanel with ID 'ctl100_ctl00_ct_PanelStep2Panel'. If it si being updated dynamically then it must be inside another UpdatePanel."
My ContentPlaceHolderID = "ct" and the RadAjaxManager in the master page looks like this:
Looks like it appends ctl100_ once too much. When I change the ControlID to "ctl100$ct$PanelStep2" it doesn't give me the javascript error anymore but it also doesn't update the panel.
I fixed the problem! It seems that the following line was the problem:
<div style="clear: both" />
Changing it to:
<div style="clear: both"></div>
fixed the problem. Don't ask why.
"Sys.InvalidOperationException: Could not find UPdatePanel with ID 'ctl100_ctl00_ct_PanelStep2Panel'. If it si being updated dynamically then it must be inside another UpdatePanel."
My ContentPlaceHolderID = "ct" and the RadAjaxManager in the master page looks like this:
<telerik:RadAjaxManager ID="RadAjaxManager2" runat="server" EnablePageHeadUpdate="False" |
DefaultLoadingPanelID="ct$RadAjaxLoadingPanel1"> |
<AjaxSettings> |
<telerik:AjaxSetting AjaxControlID="ct$LinkButtonToStep2"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="ct$PanelStep1" /> |
<telerik:AjaxUpdatedControl ControlID="ct$PanelStep2" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
</AjaxSettings> |
</telerik:RadAjaxManager> |
I fixed the problem! It seems that the following line was the problem:
<div style="clear: both" />
Changing it to:
<div style="clear: both"></div>
fixed the problem. Don't ask why.
0
Hello goyaweb,
It's great you've traced the reason for the error. Hopefully this will help other people as well. Thank you for sharing the solution!
Kind regards,
Konstantin Petkov
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
It's great you've traced the reason for the error. Hopefully this will help other people as well. Thank you for sharing the solution!
Kind regards,
Konstantin Petkov
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0

goyaweb
Top achievements
Rank 2
answered on 11 Jul 2007, 12:55 PM
"The Prometheus AjaxManager has never been intended to work from nested pages, i.e. user controls or content pages."
Why is that? It sucks using the AjaxManager designer with masterpages as it basically doesn't work and you have to provide the references manually.
Why is that? It sucks using the AjaxManager designer with masterpages as it basically doesn't work and you have to provide the references manually.
0
Hello goyaweb,
This post is dated back when there was no AjaxManagerProxy. If you download the latest prometheus controls, you will notice that there is a proxy manager control, that is intended exactly for such needs. Just drop it on content page or user control and set the control relations. It will automatically "transfer" the AjaxSettings to the main AjaxManager control in the MasterPage.
All the best,
Steve
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
This post is dated back when there was no AjaxManagerProxy. If you download the latest prometheus controls, you will notice that there is a proxy manager control, that is intended exactly for such needs. Just drop it on content page or user control and set the control relations. It will automatically "transfer" the AjaxSettings to the main AjaxManager control in the MasterPage.
All the best,
Steve
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0

thepilsbury
Top achievements
Rank 1
answered on 12 Jul 2007, 09:13 AM
I've downloaded and installed the latest Prometheus controls but cannot find the AjaxManagerProxy you speak of in my toolbox. There's also no mention of it in the help files.
I really want to use this funtionality...
Help!
I really want to use this funtionality...
Help!
0

thepilsbury
Top achievements
Rank 1
answered on 12 Jul 2007, 09:38 AM
Having uninstalled and reinstalled the controls I can now see the Proxy and help. For some reason an install over the top of a previous one doesn't update the toolbox or help files.
Sorted now, thanks.
Sorted now, thanks.
0

rh
Top achievements
Rank 1
answered on 04 Jan 2008, 10:18 PM
I am also getting the Sys.InvalidOperationException: Could not find UPdatePanel with ID error after upgrading to the Prometheus AJAX stack from the RAD AJAX stack. It worked fine with the old stack but breaks with the new one. I don't have a div tag in the form <div />.
The upgrade to Prometheus has been anything but straightforward. It would have been nice if the new model was compatible with the old model. And since it isn't it would have been nice if the documentation clearly indicated that the upgrade is not straightforward.
The upgrade to Prometheus has been anything but straightforward. It would have been nice if the new model was compatible with the old model. And since it isn't it would have been nice if the documentation clearly indicated that the upgrade is not straightforward.
0
Hello rh,
Although we are doing our best to ensure that RadControls Prometheus are as backwards compatible with their Classic versions as possible, due to the ASP.NET AJAX framework conventions and syntax there can be some breaking changes between both versions:
http://www.telerik.com/products/aspnet-prometheus/faq.aspx (see sections Why isn't Prometheus part of RadControls for ASP.NET, Is it safe to use the Prometheus Beta and What are the risks of using Prometheus controls)
To facilitate the migration process as much as possible, we have created individual help article for each control outlining the main points while migrating for RadControls Classic to RadControls Prometheus. Here are links to the relevant articles for RadGrid, RadMenu and RadComboBox:
http://www.telerik.com/help/radcontrols/prometheus/?grdMigrationToPrometheus.html
http://www.telerik.com/help/radcontrols/prometheus/?menu_changes_and_backward.html
http://www.telerik.com/help/radcontrols/prometheus/?combochanges.html
If you experience a particular problem when migrating from RadAjax Classic to RadAjax Prometheus, I recommend you review these resources which compare both RadAjax frameworks in detail:
http://www.telerik.com/products/aspnet-prometheus/controls/ajax/RadAjax-aspnet-vs-RadAjax-prometheus.aspx
Also feel free to submit a sample project demonstrating the erroneous behavior (through our support ticketing system). We will debug it locally and will do everything possible to provide an accurate explanation/solution for you.
Best regards,
Stephen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Although we are doing our best to ensure that RadControls Prometheus are as backwards compatible with their Classic versions as possible, due to the ASP.NET AJAX framework conventions and syntax there can be some breaking changes between both versions:
http://www.telerik.com/products/aspnet-prometheus/faq.aspx (see sections Why isn't Prometheus part of RadControls for ASP.NET, Is it safe to use the Prometheus Beta and What are the risks of using Prometheus controls)
To facilitate the migration process as much as possible, we have created individual help article for each control outlining the main points while migrating for RadControls Classic to RadControls Prometheus. Here are links to the relevant articles for RadGrid, RadMenu and RadComboBox:
http://www.telerik.com/help/radcontrols/prometheus/?grdMigrationToPrometheus.html
http://www.telerik.com/help/radcontrols/prometheus/?menu_changes_and_backward.html
http://www.telerik.com/help/radcontrols/prometheus/?combochanges.html
If you experience a particular problem when migrating from RadAjax Classic to RadAjax Prometheus, I recommend you review these resources which compare both RadAjax frameworks in detail:
http://www.telerik.com/products/aspnet-prometheus/controls/ajax/RadAjax-aspnet-vs-RadAjax-prometheus.aspx
Also feel free to submit a sample project demonstrating the erroneous behavior (through our support ticketing system). We will debug it locally and will do everything possible to provide an accurate explanation/solution for you.
Best regards,
Stephen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0

MB
Top achievements
Rank 1
answered on 25 Jan 2008, 01:29 PM
Just a minor sidebar to the business of a single AjaxManager.
I have a number of sites that use nested MasterPages (up to 5), and finding the AjaxManager can be a hassle.
So, I wrote myself a simple recursive FindControlOnMaster() utility, where I pass it the ID of the control I'm looking for and the current Page.Master... and it steps through the MasterPage nesting.
It's sure not rocket science, but if it's of use to anyone, you're welcome to use it, or make it better.
I have a number of sites that use nested MasterPages (up to 5), and finding the AjaxManager can be a hassle.
So, I wrote myself a simple recursive FindControlOnMaster() utility, where I pass it the ID of the control I'm looking for and the current Page.Master... and it steps through the MasterPage nesting.
It's sure not rocket science, but if it's of use to anyone, you're welcome to use it, or make it better.
public static Control FindControlOnMaster(System.Web.UI.MasterPage CurrentMaster, string ID) |
{ |
Control _Value = null; |
if (CurrentMaster.Master != null) |
{ |
_Value = FindControlOnMaster((System.Web.UI.MasterPage) CurrentMaster.Master, ID); |
} |
if (_Value == null) |
{ |
_Value = CurrentMaster.FindControl(ID); |
} |
return _Value; |
} |
// Call as below |
Telerik.Web.UI.RadAjaxManager _AjaxManager = FindControlOnMaster(this.Page.Master, "AjaxManager1") as Telerik.Web.UI.RadAjaxManager; |
0
Hi MB,
Thank you for sharing your solution with us and the rest of the community members. I have updated your Telerik points for the involvement.
Greetings,
Stephen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Thank you for sharing your solution with us and the rest of the community members. I have updated your Telerik points for the involvement.
Greetings,
Stephen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0

rh
Top achievements
Rank 1
answered on 25 Jan 2008, 05:09 PM
Does RadAjaxManager.GetCurrent() not work for nested master pages? I've noticed it doesn't work in OnInit events, but it is working for me in Load and after.
0
Hello rh,
unfortunately at the present moment using the GetCurrent() method for the RadAjaxManger on PageInit is not a supported scenario. We will notify for that our developers to consider whether this can be attainable for the future versions of RadAjax.
In the meantime get reference to the ajax manager from the PageLoad handler as demonstrated previously. I hope this is feasible workaround for you.
Best regards,
Iana
the Telerik team
unfortunately at the present moment using the GetCurrent() method for the RadAjaxManger on PageInit is not a supported scenario. We will notify for that our developers to consider whether this can be attainable for the future versions of RadAjax.
In the meantime get reference to the ajax manager from the PageLoad handler as demonstrated previously. I hope this is feasible workaround for you.
Best regards,
Iana
the Telerik team
0

Matthew
Top achievements
Rank 1
answered on 31 Mar 2008, 01:10 AM
"Does RadAjaxManager.GetCurrent() not work for nested master pages? I've noticed it doesn't work in OnInit events, but it is working for me in Load and after. "
Nope, doesn't work on Load either. So sick of this. Upgrading to Prometheus is a nightmare.
Nope, doesn't work on Load either. So sick of this. Upgrading to Prometheus is a nightmare.
0

Matthew
Top achievements
Rank 1
answered on 31 Mar 2008, 01:42 AM
THANK YOU SO MUCH. This method works!!! Why does Telerik provide all kinds of examples of how to use GetCurrent() with MasterPages when it cleary doesn't work?
0
Hello Matthew,
Since the examples illustrate difference scenarios and work in every configuration (as well as inside the PageLoad event as several people in this thread confirmed that), feel free to use the approach which suits your needs best.
Regards,
Stephen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Since the examples illustrate difference scenarios and work in every configuration (as well as inside the PageLoad event as several people in this thread confirmed that), feel free to use the approach which suits your needs best.
Regards,
Stephen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0

Alice
Top achievements
Rank 1
answered on 13 Sep 2008, 07:14 PM
This looks to be about where I am. I have 1 nested master page and then several content pages that I'd like to use the proxy on. The controls node comes up blank. I'm not sure whether to place the Ajax Manager on the main master page or the nested master page (from which the content pages are connected). I've tried both but I keep coming up empty handed and my pages are really too complicated for a single ajax panel, which is what I've resorted to for now.
0
Hi Alice,
Does this issue happen when using .NET 3.5 framework and VS 2008 without SP1 installed? We had similar reports before and the problem with the empty RadAjaxManager configurator (when placed in a master page) should be addressed in the Service Pack 1 version of the framework. Please migrate to it to see whether this eliminates the problem.
Best regards,
Stephen
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Does this issue happen when using .NET 3.5 framework and VS 2008 without SP1 installed? We had similar reports before and the problem with the empty RadAjaxManager configurator (when placed in a master page) should be addressed in the Service Pack 1 version of the framework. Please migrate to it to see whether this eliminates the problem.
Best regards,
Stephen
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

Alice
Top achievements
Rank 1
answered on 17 Sep 2008, 09:10 PM
That was exactly it. Thanks!
0

Indra Portugal
Top achievements
Rank 1
answered on 16 Oct 2008, 10:52 AM
Hi,
In a previous post, it was said that using RadAjaxManager.GetCurrent on PageInit was not a supported scenario and it would be considered in future versions. I'm using RadControls ASP.NET AJAX Q2 2008 and it seems that it's still not a supported scenario since it returns null.
My question is if it should be supported in RadControls for ASP.NET AJAX Q2 2008 and if not is it still being considered?
Thanks,
Paulo Cunha
In a previous post, it was said that using RadAjaxManager.GetCurrent on PageInit was not a supported scenario and it would be considered in future versions. I'm using RadControls ASP.NET AJAX Q2 2008 and it seems that it's still not a supported scenario since it returns null.
My question is if it should be supported in RadControls for ASP.NET AJAX Q2 2008 and if not is it still being considered?
Thanks,
Paulo Cunha
0
Hi Paulo,
This scenario is still not supported and we are still researching it for the next versions of RadAjax for ASP.NET AJAX. I hope this is not a show stopper for you and referencing the RadAjaxManager instance with the GetCurrent(page) method on PageLoad instead of PageInit is viable workaround for you.
Kind regards,
Stephen
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
This scenario is still not supported and we are still researching it for the next versions of RadAjax for ASP.NET AJAX. I hope this is not a show stopper for you and referencing the RadAjaxManager instance with the GetCurrent(page) method on PageLoad instead of PageInit is viable workaround for you.
Kind regards,
Stephen
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

sotero
Top achievements
Rank 1
answered on 11 Jun 2009, 08:58 PM
I ma having the same problem. I am using VS2008 SP1 and .Net Framework 3.5 SP1 but the controls node comes up blank. I´ve tried to use ajax manager proxy but I am not sure if I have to put it on master or in content page. I´ve tried both but still got empty!
0
Hello sotero,
The issue has been confirmed as resolved by MS and our clients which reported it after the SP1 version of the .NET framework and VS 2008. It seems that something else causes the conflict in your particular case.
I suggest you prepare a simple test site, exhibiting the issue, and send it attached to a regular support ticket. We will test it locally and will get around to you with our findings.
Kind regards,
Sebastian
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
The issue has been confirmed as resolved by MS and our clients which reported it after the SP1 version of the .NET framework and VS 2008. It seems that something else causes the conflict in your particular case.
I suggest you prepare a simple test site, exhibiting the issue, and send it attached to a regular support ticket. We will test it locally and will get around to you with our findings.
Kind regards,
Sebastian
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0

sotero
Top achievements
Rank 1
answered on 12 Jun 2009, 02:27 PM
What is interesting is that although the visual problem, the ajax works if I put the settings manually.
I have an ajax manager in master page and a Ajaxmanagerproxy in content page. When I try to configure ajaxmanagerproxy, visually, it shows no controls. But if I put the ajaxsettings manually it works fine. VS2008 SP1 and .Net Framework 3.5 SP1. Windows XP Pro SP3. Telerik Version=2009.1.402.35
Does this information help?
I´ll send a test site to support as you suggested.
Thanks.
I have an ajax manager in master page and a Ajaxmanagerproxy in content page. When I try to configure ajaxmanagerproxy, visually, it shows no controls. But if I put the ajaxsettings manually it works fine. VS2008 SP1 and .Net Framework 3.5 SP1. Windows XP Pro SP3. Telerik Version=2009.1.402.35
Does this information help?
I´ll send a test site to support as you suggested.
Thanks.