Qt 6.11 is out! See what's new in the release
blog
Drag from QHeaderView
General and Desktop
2
Posts
2
Posters
2.7k
Views
1
Watching
-
Hi All,
I try to drag horizontal Header of a QTableView but I have no success with :
@ ui->tableview->horizontalHeader()->setDragEnabled(true);
ui->tableview->horizontalHeader()->setDragDropMode(QAbstractItemView::DragOnly);@drop mechanism seems to be ok as I can drop all cells of the tableView itself without problem to my drop widget.
Nothing found that way in the forum. Any idea is welcome.
-
it doesn't mean that if you can drag and drop your cells that you can drag and drop headers. Those are two separate things.
from the QHeaderView docs :
Moving Header SectionsA header can be fixed in place, or made movable with setMovable()....
it might be a good idea to use also setDropIndicatorShown(true);