The grid row which is connected to the data row of DataSet.
Like other grid rows, since it is created and removed within grid, you do not need to directly create this class object.
$('#getName').click(function () {
var row = grid.focusedRow();
if (row instanceof DataRow) {
console.log(row.getData('name');
$('#value').val(row.getData('name'));
}
}