Is there something similar to the (PyQT)
QTreeWidgetItem.setCheckState(0, Qt.Checked)
but for the combo box?
I can't see anything in the reference, so how can I insert a custom QComboBox as one of the elements within QTreeWidgetItem?
Is there something similar to the (PyQT)
QTreeWidgetItem.setCheckState(0, Qt.Checked)
but for the combo box?
I can't see anything in the reference, so how can I insert a custom QComboBox as one of the elements within QTreeWidgetItem?
Use QTreeWidget::setItemWidget ( QTreeWidgetItem * item, int column, QWidget * widget ) to put the combo box into the cells.