SMART datagrid v1.4 > Classes > GridDataSet
row로 지정한 위치의 데이터행이 실제 값들을 가지고 있으면 true를 리턴한다.
var row = grid.focusedDataRow();
if (row) {
var hasData = ds.hasData(row.dataIndex());
if (!hasData) {
alert(row.dataIndex() + '행에 값들이 존재하지 않습니다.');
}
}