I have a qtablewidget :
table = QtWidgets.QTableWidget(0, 5)
I update it :
nbrWidget = QtWidgets.QTableWidgetItem(str(item.item_nbr))
table.setItem(0,0,nbrWidget)
Now the user edit it to correct it. How can I catch the value when he press returen, and launch an existing updateData()
I have read some doc but it is not clear between delegates and userrole. I'd like to keep it as simple as possible.