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?:
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?
| <%@ 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?