I'm validating my from with jQuery Validate,and I've disabled the user input to Kendo Date. But the validation for datepicker is not working when I applied disabled="disabled"
to the Kendo datepicker.
Asked
Active
Viewed 1,000 times
0

Sparky
- 98,165
- 25
- 199
- 285

Mallikarjuna Rao
- 213
- 1
- 4
- 17
-
use unbind to remove the event for that element – madalinivascu Apr 29 '15 at 10:31
-
Hi..! Can you give the Example...Because i'm new to Jquery. – Mallikarjuna Rao Apr 29 '15 at 10:50
-
1post some code to clarifiy the question – madalinivascu Apr 29 '15 at 11:11
-
Please read ["How to Ask"](http://stackoverflow.com/help/how-to-ask), and show us your code! – Sparky Apr 29 '15 at 14:16
1 Answers
0
the validation for datepicker is not working when I applied
disabled="disabled"
By default, the jQuery Validate plugin will never be able to validate disabled
fields among other things.
.not( ":submit, :reset, :image, [disabled], [readonly]" )
.not( this.settings.ignore )
This behavior is hard-coded into the plugin and there is no option to disable it.

Sparky
- 98,165
- 25
- 199
- 285