SMART datagrid v.1 > Classes > GridDataSet
If the data row of the location which is specified by row has actual values, it will return true.
var row = grid.focusedDataRow();
if (row) {
var hasData = ds.hasData(row.dataIndex());
if (!hasData) {
alert(row.dataIndex() + 'The values do not exist in the row.');
}
}