With the Microsoft Validator controls (RequiredFieldValidator in this case) the typical behavior is for validation logic to run when you tab out of the field, or on submit.
I have noticed with RadComboBox this is **not** the case, even in your own online demo. Rather, with RCB validation *only* occurs when you attempt to submit. Is there any way to force this to validate on tab out? Typically the field would look something like this in code:
I have noticed with RadComboBox this is **not** the case, even in your own online demo. Rather, with RCB validation *only* occurs when you attempt to submit. Is there any way to force this to validate on tab out? Typically the field would look something like this in code:
1.
<
telerik:RadComboBox
ID
=
"rcbPatientMaritalStatus"
EmptyMessage
=
"Start typing marital status or select one"
MarkFirstMatch
=
"true"
TabIndex
=
"8"
Width
=
"160"
runat
=
"server"
>
2.
<
Items
>
3.
<
telerik:RadComboBoxItem
Text
=
"Single"
Value
=
"Single"
/>
4.
<
telerik:RadComboBoxItem
Text
=
"Married"
Value
=
"Married"
/>
5.
<
telerik:RadComboBoxItem
Text
=
"Other"
Value
=
"Other"
/>
6.
</
Items
>
7.
</
telerik:RadComboBox
>
1.
<
asp:RequiredFieldValidator
ID
=
"rfvPatientMaritalStatus"
ControlToValidate
=
"rcbPatientMaritalStatus"
ErrorMessage
=
"Marital Status Required"
Display
=
"None"
Visible
=
"false"
runat
=
"server"
/>