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