SMART datagrid v.1 > Classes > GridBase
Grid Row which currently has input focus.
$('#delete').click(function () {
var row = grid.focusedRow();
if (row && row.dataIndex() >= 0) {
dataset.deleteRow(row.dataIndex());
}
});