다른 그리드행들과 마찬가지로 그리드 내부에서 생성되고 사라지므로, 이 클래스 객체를 직접 생성할 일은 없다.
$('#getName').click(function () {
var row = grid.focusedRow();
if (row instanceof DataRow) {
console.log(row.getData('name');
$('#value').val(row.getData('name'));
}
}