At times a user of my application may have open two tableviews looking at the same underlying SQL table. Each tableview has its own QSqlTableModel.
If they edit data in one tablemodel, I would like that change to be immediately reflected in the other tableview at the same time. Is there a neat signal/slot way to do this? What is the most elegant way to go about it?

thanks

John