I have a RadAjaxManager that I'm trying to setup to AJAXify. After I click the Button_SearchForCustomer button I get this error:
Sys.InvalidOperationException: Could not find UpdatePanel with ID 'Label_CustomerNamePanel'. If it is being updated dynamically then it must be inside another UpdatePanel.
Sys.InvalidOperationException: Could not find UpdatePanel with ID 'Label_CustomerNamePanel'. If it is being updated dynamically then it must be inside another UpdatePanel.
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" DefaultLoadingPanelID="RadAjaxLoadingPanel1"> | |
<AjaxSettings> | |
<telerik:AjaxSetting AjaxControlID="Button_SearchForCustomer"> | |
<UpdatedControls> | |
<telerik:AjaxUpdatedControl ControlID="Label_Error" /> | |
<telerik:AjaxUpdatedControl ControlID="Hidden_InitialSliderValue" /> | |
<telerik:AjaxUpdatedControl ControlID="Label_CustomerName" /> | |
<telerik:AjaxUpdatedControl ControlID="Button_SaveStatus" /> | |
<telerik:AjaxUpdatedControl ControlID="Placeholder" /> | |
<telerik:AjaxUpdatedControl ControlID="Div_Results" /> | |
</UpdatedControls> | |
</telerik:AjaxSetting> | |
<telerik:AjaxSetting AjaxControlID="Button_SaveStatus"> | |
<UpdatedControls> | |
<telerik:AjaxUpdatedControl ControlID="Label_Error" /> | |
<telerik:AjaxUpdatedControl ControlID="Button_SaveStatus" /> | |
</UpdatedControls> | |
</telerik:AjaxSetting> | |
</AjaxSettings> | |
</telerik:RadAjaxManager> |
<div> | |
<asp:Label runat="server" AssociatedControlID="RadTextBox_Customer_ID" Text="TMS Customer ID:"></asp:Label> | |
<telerik:RadTextbox runat="server" | |
id="RadTextBox_Customer_ID" | |
EmptyMessage="tms id" | |
LabelCssClass="radLabelCss_Telerik" Skin="Telerik" | |
Width="125px"></telerik:RadTextbox> | |
<asp:Button runat="server" ID="Button_SearchForCustomer" Text="Lookup Customer" /> | |
<br /><br /> | |
<asp:Label runat="server" ID="Label_Error" CssClass="Error" /> | |
<div runat="server" id="Div_Results" style="padding-top:10px;"> | |
<asp:Label runat="server" ID="Label_CustomerName" CssClass="CustomerName" /> | |
<table> | |
<tbody> | |
<tr> | |
<td colspan="2" align="center"> | |
<asp:Button runat="server" ID="Button_SaveStatus" Text="Save Credit Change" /> | |
</td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
<br /> | |
<asp:PlaceHolder runat="server" ID="Placeholder" /> | |