Hi, I have an asp button as an updated control in an ajax manager.
If a user does not select a proper value in cboDivision, cmdPay is disabled, and when they do select a valid one, cmdPay in enabled. This is all working fine.
When I click the button, it is not submitting the entire page so my interaction with the other controls is not displayed. Am i just not understanding how this works? How can I get the command button to submit the whole page?
<telerik:RadAjaxManager ID="RadAjaxManager" runat="server">
<AjaxSettings>
<%--AjaxControlID has to equal its parents name for some stupid reason--%>
<telerik:AjaxSetting AjaxControlID="cboDivision">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="cmdPay" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>