Pretty simple. Subscribe to the onChange event and report the selected id. I assume you mean attribute identifier.
function onChange(arg) { var selected = $.map(this.select(), function(item) { return $(item).attr("id"); }); alert(selected); } $(document).ready(function() { $("#grid").kendoGrid({ dataSource: { data: createRandomData(50), pageSize: 5 }, change: onChange, columns: [ { field: "FirstName", title: "First Name" }, { field: "LastName", title: "Last Name" }, { field: "Age" } ] }); });
source share