get
Gets the data item (model) with the specified id.
The
getmethod requires theschema.modeloption to be set and theidof the model to be specified. Thegetmethod will look for items only on the current page ifserverPagingis enabled.
Parameters
id Number|String
The id of the model to look for.
Returns
kendo.data.Model—The model instance. Returns undefined if a model with the specified id is not found.
Example - find a model by id
<script>
var dataSource = new kendo.data.DataSource({
data: [
{id: 1, name: "Jane Doe" },
{id: 2, name: "John Doe" }
],
schema: {
model: { id: "id" }
}
});
dataSource.fetch(function() {
var dataItem = dataSource.get(1);
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(dataItem.name); // displays "Jane Doe"
});
</script>
In this article