我正在尝试设置使用setCellWidget
创建的QComboBox的索引,该QComboBox在QTableWidget中设置
为什么尽管我使用cellWidget
调用组合框,但是在尝试设置索引时遇到错误,尽管它的类型仍然是QComboBox?
for row in xrange(self.table.rowCount()):
combo = self.table.cellWidget(row, 1)
print type(combo) # returns <type 'PySide.QtGui.QComboBox'>
combo.setCurrentIndex(2)
AttributeError: 'NoneType' object has no attribute 'setCurrentIndex'