Отследить сигнал
void QAbstractItemModel::rowsInserted ( const QModelIndex & parent, int start, int end ) [signal]
C++ (Qt)
QObject::connect(model, SIGNAL(rowsInserted(const QModelIndex &, int, int)), this, SLOT(toSelected(const QModelIndex &, int, int)));
void MyClass::toSelected( const QModelIndex & parent, int start, int end )
{
tableView->selectionModel()->select(/*то, что нужно выделить*/);
}