Is there anyway to add like a button in qtablewidget? But the date within the cell would stil have to be displaying, for example if an user double clicked a cell, could i se
In PyQt4 add button to qtablewidget :
btn= QtGui.QPushButton('Hello') qtable_name.setCellWidget(0,0, btn) # qtable_name is your qtablewidget name