<script>var observable =newkendo.data.ObservableObject({name:"John Doe"});
observable.bind("change",function(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log(e.field);// will output the changed field once the event is raised});
observable.set("name","Jane Doe");// raises the "change" event and the handler outputs "name"</script>