validationHandlerString|Function|Object

The URL, AJAX settings or function that validates the text input. When used with function, call the args.success method with boolean value.

Configure the Handler as a Function

pseudo
    <input id="captcha" />
    <script>
        $("#captcha").kendoCaptcha({
            validateOnBlur: true,
            handler: "https://demos.telerik.com/kendo-ui/captcha/reset",
            validationHandler: function (args) {
                args.success(false);
            },
        });
    </script>
pseudo
    <input id="captcha" />
    <script>
        $("#captcha").kendoCaptcha({
            validateOnBlur: true,
            handler: "https://demos.telerik.com/kendo-ui/captcha/reset",
            validationHandler: "https://demos.telerik.com/kendo-ui/captcha/validate",
        });
    </script>
In this article
validationHandler
Not finding the help you need?
Contact Support