get event

Fired when the get method is invoked.

Event Data

e.field String

The name of the field which is retrieved.

Example - subscribe to the get event

<script>
var observable = new kendo.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>
In this article