I've two RadComboBox. I am trying to refresh both the RadComboBox when the first one is refreshed.
Suppose there are two RadComboBox sate and city. Now the user has selected desired values from both the RadComboBox. Now again if he selects another item from the first RadComboBox i.e.
state then the second RadComboBox city should show --SELECT--. The user will have to reselect item from the second RadComboBox. How can I do it.
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="state">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="state" />
<telerik:AjaxUpdatedControl ControlID="city" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxS ...
Go to the complete details ...