I’m new to the RadControls for VS2010 and have been having a problem trying to get the client-side methods to exist. I upgraded an existing project through the Upgrade Wizard. I placed four copies of the ComboBox on the ASP page utilizing AJAX. The first three ComboBoxes are setup for cascading functionality. The first is populated through an Object Data Source. The next two are populated server side and this is working. The forth control is set up to be populated client side based on the selection of the first controls. The object exists in the client side script. The methods in the documentation are undefined. What am I missing in order to use the client-side methods? I don't think I need the Telerik.QuickStart but I gave it a try.
<%@ Register TagPrefix="qsf" Namespace="Telerik.QuickStart" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<telerik:RadScriptManager ID="RadScriptManager" runat="server">
</telerik:RadScriptManager>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
</telerik:RadAjaxManager>
.
.
.
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" Height="200px" Width="810px">
<telerik:RadComboBox ID="RadComboBox1" runat="server" Width="700px" AutoPostBack="False" Enabled="False"
HighlightTemplatedItems="true" Skin="WebBlue" CausesValidation="False"
DataTextField="ConfigID" DataValueField="ConfigID"
EnableItemBindingExpressions="False">
<HeaderTemplate>
<table style="width: 100%; text-align: left;">
<tr>
<td style="width: 100px;">ConfigID</td>
<td style="width: 200px;">Title</td>
<td style="width: 300px;">Description</td>
<td style="width: 100px;">Date</td>
</tr>
</table>
</HeaderTemplate>
<ItemTemplate>
<table style="width: 100%; text-align: left;">
<tr>
<td style="width: 100px;">ConfigID</td>
<td style="width: 200px;">Title</td>
<td style="width: 300px;">Description</td>
<td style="width: 100px;">Date</td>
</tr>
</table>
</ItemTemplate>
</telerik:RadComboBox>
</telerik:RadAjaxPanel>