validationSummary.container String|jQuery

Defines the element in which the validation summary will be rendered. By default, the validation summary is rendered before the element on which the Validator is initialized.

Example

<form id="myform">
    <input name="username" required /> <br />
    <button>Validate</button>
</form>
<div id="summary"></div>

<script>
    $("#myform").kendoValidator({
      validationSummary: {
        container: "#summary"
      }
    });
</script>
In this article