get
Gets the data item (model) with the specified id.
The
get
method requires the schema.model option to be set and theid
of the model to be specified. Theget
method will look for items only on the current page if serverPaging is 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>