We are using Kendo UI 2014.2.716.
I have a DropDownList defined like this:
<
div
id
=
"ScenarioCurrency"
name
=
"ScenarioCurrency"
style
=
"width: 250px"
data-role
=
"dropdownlist"
data-value-primitive
=
"true"
data-text-field
=
"Label"
data-value-field
=
"CurrencyCode"
data-bind
=
"value: SelectedCurrency, source: Currencies"
></
div
>
The validator is added to the form: $('#ScenarioForm').kendoValidator({ ... });
There are 4 custom rules defined. When the DropDownList loses focus, none of the custom rules are run, nothing happens in the validator at all.
I looked around and I see tons of people with this issue but no real solutions and no examples on the Kendo site with anything other than a simple <input> text field.
Is it possible to validate a DropDownList? How do you do it?