SMART datagrid v1.4 > Classes > CellIndex
이 위치의 셀이 타당한 데이터셀이면 셀의 값을 리턴한다.
데이터셀이 아니면 undefined를 리턴한다.
$('#getValue').click(function () {
var index = grid.focusedIndex();
if (grid.isValidCell(index)) {
$('#value').val(index.getValue());
}
});