uid String

The unique identifier of the ObservableObject.

Example - use the uid field

<script>
var observable = new kendo.data.ObservableObject({ name: "John Doe" });
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(observable.uid); // outputs "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" where "x" is a number or letter
</script>
In this article