Please add the following things in Kendo UI validators for compare, password length check, password complexity check, RangeValidator, ValidationSummary
Hello,
While there's no inbuilt validation for the password, compare or length validators - all of these checks can be performed in the custom rule function:
https://docs.telerik.com/kendo-ui/api/javascript/ui/validator/configuration/rules
However, we estimate this request as valid and eligible for eventual implementation.
Regards,
Nencho
Progress Telerik
Тhe web is about to get a bit better!
The Progress Hack-For-Good Challenge has started. Learn how to enter and make the web a worthier place: https://progress-worthyweb.devpost.com.
Four years later and this is still not supported?
I agree. This isn't acceptable.
So you think this is acceptable: $("#myform").kendoValidator({ rules: { custom: function(input) { // Only "Tom" will be a valid value for the FirstName input return input.is("[name=firstname]") && input.val() === "Tom"; } } }); First off, wouldn't that mean that every field that's not named "firstname" will be seen as invalid? Also, this is a bad copout. I mean, look at wijmo's: $('#ConfirmPassword').rules("add", { equalTo: "#Password", messages: { equalTo: "Passwords must match." } }); That's a lot easier. And Wijmo didn't say "these are application-specific" and can be accomplished "easily" by jumping through ridiculous hoops in non-intuitive manners. ALL of these should be strongly considered for inclusion. Great suggestions, Amol.
Compare and password validators are application-specific and can be accomplished easily with custom validation rules: http://www.kendoui.com/documentation/framework/validator/overview.aspx. The rangevalidator and summary sound interesting. We'll take a look at the feasibility of adding these.