Once you have modelIndex (from Frank's comment above), you can use it to find which cell has been double clicked.
def slotDoubleClicked(self, mi): row = mi.row() column = mi.column()
You can then use these row and column values ββto access the table using table.setItem (row, column, newdata) or another table method
Vicky t
source share