This is a migrated thread and some comments may be shown as answers.

[Solved] RadAjaxManager: Why won't controls show up??

1 Answer 84 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
bemara57
Top achievements
Rank 1
bemara57 asked on 27 Mar 2008, 08:41 PM
I'm pretty new at Telerik's controls, but seems pretty easy. I'm trying to follow the tutorial regarding the RadAjaxManager. I'm having a problem where when I click on the configuration ajax manager button for the RadAjaxManager, it doesn't list ANY controls. Just the root node of control with nothing underneath it (of course no plus sign). I'm using the latest release: 2007.3 1425. Can anyone see why my controls aren't showing up?:

<%@ Page Language="C#" MasterPageFile="~/Admin/AdminPage.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Admin_Default" Title="Untitled Page" %> 
 
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"
 
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">     
</telerik:RadAjaxManager>   
     
<table border="0" cellpadding="3"
<tr> 
<td width="150px"
    <asp:DropDownList ID="ddlDateRange" runat="server" Width="150px"  
        AutoPostBack="True" onselectedindexchanged="ddlDateRange_SelectedIndexChanged"
        <asp:ListItem Value="0">Today</asp:ListItem> 
        <asp:ListItem Value="1">Last Week</asp:ListItem> 
        <asp:ListItem Value="2">Last Month</asp:ListItem> 
        <asp:ListItem Value="3">Last Year</asp:ListItem> 
    </asp:DropDownList> 
</td> 
<td width="110px"
    <telerik:RadDatePicker ID="dpStart" runat="server"
    </telerik:RadDatePicker> 
</td> 
<td width="110px"
    <telerik:RadDatePicker ID="dpEnd" runat="server"
    </telerik:RadDatePicker> 
</td> 
</tr> 
</table>   
      
</asp:Content> 

My masterpage has <asp:ScriptManager ID="ScriptManager1" runat="server" />. I even tried putting the RadAjaxManager after all my controls in the code above but same thing. I know that shouldn't make a difference but I'm at wits end. All examples in the tutorial have worked so far using the RadAjaxPanel, but I haven't been able to get the RadAjaxManager to work yet. Any suggestions or clues as to what's going on?

1 Answer, 1 is accepted

Sort by
0
Maria Ilieva
Telerik team
answered on 28 Mar 2008, 03:41 PM
Hi,

The problem with the RadAjaxManger in design time is actually a bug of this version. Please refer to the following blog, which elaborates on this matter.  Also, in this scenario, I would suggest that you use the RadAjaxManagerProxy control in the content page and RadAjaxManager in the master page of the application. For more information on this matter  you could review the following help topic.

Sincerely yours,
Maria Ilieva
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Ajax
Asked by
bemara57
Top achievements
Rank 1
Answers by
Maria Ilieva
Telerik team
Share this question
or