How to validate disabled Kendo Datepicker with jQuery Validate? -
i'm validating jquery validate,and i've disabled user input kendo date. validation datepicker not working when applied disabled="disabled"
kendo datepicker.
the validation datepicker not working when applied
disabled="disabled"
by default, jquery validate plugin never able validate disabled
fields among other things.
.not( ":submit, :reset, :image, [disabled], [readonly]" ) .not( this.settings.ignore )
this behavior hard-coded plugin , there no option disable it.
Comments
Post a Comment