Quantcast
Viewing all articles
Browse latest Browse all 15

Enabling ASP.Net MVC client validation for Kendo UI components

You might have stumbled upon this page because you are getting crazy in trying out all sort of solutions to make the client validation work for your Kendo components such as DropDownListFor, DatePickerFor, ComboBoxFor, etc. You might have tried several suggestions you saw online like setting the validator defaults in your JavaScript like the samples below $.validator.setDefaults({     ignore: "" }); or <script>     $.validator.defaults.ignore = ""; </script> or <script type="text/javascript">     $(function () {         var form = $('#yourFormName');         form.data('validator').settings.ignore = ''; // default is ":hidden".     }); </script> Some even offer not equating it to empty string but use an empty array Do they… Read More »

Viewing all articles
Browse latest Browse all 15

Trending Articles