SMART datagrid v.1 > Classes > CellIndex
この位置のセルが妥当であるデータセルならセルの値をリターンする。
データセルでなければundefinedをリターンする。
$('#getValue').click(function () {
var index = grid.focusedIndex();
if (grid.isValidCell(index)) {
$('#value').val(index.getValue());
}
});