<kendo:form-validatable>

Configures the built-in Validator options.

Example

<kendo:form>
    <kendo:form-validatable></kendo:form-validatable>
</kendo:form>

Configuration Attributes

errorTemplate java.lang.String

Configures the Form Validator errorTemplate option.

Example

<kendo:form-validatable errorTemplate="errorTemplate">
</kendo:form-validatable>

validateOnBlur boolean

Configures the Form Validator validateOnBlur option.

Example

<kendo:form-validatable validateOnBlur="validateOnBlur">
</kendo:form-validatable>

validationSummary java.lang.Object

Configures the Form Validator validationSummary option.

Example

<kendo:form-validatable validationSummary="validationSummary">
</kendo:form-validatable>

Event Attributes

errorTemplate String

Configures the Form Validator errorTemplate option.

Example

<kendo:form-validatable errorTemplate="handle_errorTemplate">
</kendo:form-validatable>
<script>
    function handle_errorTemplate(e) {
        // Code to handle the errorTemplate event.
    }
</script>

Event Tags

kendo:form-validatable-errorTemplate

Configures the Form Validator errorTemplate option.

Example

<kendo:form-validatable>
    <kendo:form-validatable-errorTemplate>
        <script>
            function(e) {
                // Code to handle the errorTemplate event.
            }
        </script>
    </kendo:form-validatable-errorTemplate>
</kendo:form-validatable>
In this article
Not finding the help you need?