Hello
I have two QTableViews with equal number of rows connected with two different QStandardItemModel's. I'd like to navigate by one QTableView - and get the same selection on the other one. Now I do the following:
Qt Code:
  1. connect (tabview1, SIGNAL(pressed(const QModelIndex &)), tabview2, SLOT(setCurrentIndex(const QModelIndex &)));
  2. connect (tabview2, SIGNAL(pressed(const QModelIndex &)), tabview1, SLOT(setCurrentIndex(const QModelIndex &)));
To copy to clipboard, switch view to plain text mode 
While I use the mouse everything is all right but when i begin to move by means of keyboard - there is no reaction in the second QTableView...certainly
How could I get the desired result? Maybe there is any other signal to use?
Thanks in advance...