clear
Clears the form fields. Sets all model fields to null
except the ones with hidden input (editor: "hidden").
Example
<form id="myForm"></form>
<script>
$("#myForm").kendoForm({
formData: {
ID: 1,
Name: "Ivan",
Address: "Sofia"
}
});
var form = $("#myForm").getKendoForm();
form.clear();
</script>