hello,
i use the "kendo-multi-select" and i want to validate required values with ng-message.
the problem is, that no one of the validation options (ng-pattern, ng-maxlength, etc) are triggered via ng-message and kendo-multi-select. even the simple "ng-required" is not accessible.
is there another solution for this issue? or a workaround i can use?
I use this one:
<select kendo-multi-select
id="{{x.Pos}}_{{$index}}"
name="{{x.Pos}}_{{$index}}"
style="width:100%"
k-ng-model="x.something.Value"
ng-disabled="!x.Editable"
k-data-source="x.DataSource"
k-ng-delay="x.DataSource"
k-value-primitive="true"
k-rebind="x.DataSource"
ng-required="x.Required"
autocomplete="off"></select>
<div ng-messages="MyForm[x.Pos+'_'+$index].$error" ng-messages-multiple ng-if="MyForm[x.Pos+'_'+$index].$touched">
<div ng-messages-include="/validationMessages.view.html"></div>
</div>
thank you for your help
werner