rowSelect


Event fires on selection of row

Parameters

NameTypeDescription
e {object} event data
$row {object} the row presented as jquery object
id {string} the id of the record
record {object} the data of the row record

Examples

  
Edit this example
<table id="grid"></table> <script> var grid = $("#grid").grid({ dataSource: "../Grid/GetPlayers", columns: [ { field: "ID" }, { field: "Name" }, { field: "PlaceOfBirth" } ], selectionMethod: "checkbox" }); grid.on("rowSelect", function (e, $row, id, record) { alert('Row with id=' + id + ' is selected.'); }); </script>