Hello
I have used Qt Designer to make a dialog containing a QTableWidget.
I have set the following - so that I can drag and drop rows within the table
Qt Code:
  1. tableWidget->setAcceptDrops(true);
  2. tableWidget->setDragEnabled(true);
  3. tableWidget->setDefaultDropAction(Qt::MoveAction);
  4. tableWidget->setSelectionMode(QAbstractItemView::NoSelection);
  5. tableWidget->setSelectionBehavior(QAbstractItemView::SelectRows);
To copy to clipboard, switch view to plain text mode 

However I cannot drag rows within the table

What have I missed

TIA

Graham