reset
Clears the registered errors and hides the validation messages and validation summary.
Example - set sortable feature of the Grid to true
<div id="myform">
<input name="username" required /> <br />
<input name="location" required /> <br />
<button>Validate</button>
</div>
<script>
// attach a validator to the container and get a reference
var validator = $("#myform").kendoValidator({
validationSummary: true
}).data("kendoValidator");
//trigger validation
validator.validate();
//reset
validator.reset();
</script>