header is selected in tableView !
Solved
General and Desktop
-
Hi @Pada_ ,
You can check header is select or not by,
get a pointer to a QHeaderView object using QTableView's verticalHeader() and horizontalHeader() methods.and setting up header you can use,
void QTableView::setHorizontalHeader(QHeaderView *header)
void QTableView::setVerticalHeader(QHeaderView *header)
-
Hi,
sectionClicked might be of use here.