New to Kendo UI for jQueryStart a free 30-day trial

Dirty

fields

Indicates whether the model is modified.

dirty

Boolean
<script>
var model = new kendo.data.Model({
    name: "John Doe"
});

/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(model.dirty); // outputs "false"
model.set("name", "Jane Doe");
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(model.dirty); // outputs "true"
</script>
Not finding the help you need?
Contact Support