I have a RadComboBox that I don't want to trigger any validation checking (I have several controls using asp:RequireFieldValidator) ... so I set the CausesValidation='false'
<telerik:RadComboBox ID="rcb_Insurances" runat="server" Width="100%" AutoPostBack="true" CausesValidation="false"/>
and on the same page I have a RadButton that I DO want to trigger validation checking so ...
<telerik:RadButton ID="rbn_MakePayment" runat="server" Text="Pay Now" Font-Size="X-Large" OnClick="MakePayment" CausesValidation="true"></telerik:RadButton>
So validation is NOT performed when I check an item in my RadComboBox. However, when I click my RadButton validation is not triggered?
If I remove the CausesValidation=false on the RadComboBox then my RadButton will trigger validation.
Ideas?
Cheers, Rob.