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?
With this line you get cell widget out of table (in your case combo box)
and then simply take current index of that combo box: