I am no so strong in object programing in Python, so I have to ask for a help.
I create a combobox inside table this way (it works):
self.comboBoxEng = QtGui.QComboBox()
self.tableWidget_1.setCellWidget(row,column,self.comboBoxEng)
The question is:
How to get currentIndex()
property (for example...) from combobox which is used as tableWidgetItem
?
In one line
or any other info like
currenText()
.