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.

see line 553:

.not( ":submit, :reset, :image, [disabled], [readonly]" ) .not( this.settings.ignore ) 

this behavior hard-coded plugin , there no option disable it.

(it cannot disabled using ignore option.)


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -