How to check whether value in QTable widget changed

qt, qt-creator, qt4

Solution

Of course,

void QTableWidget::itemChanged ( QTableWidgetItem * item )   [signal]

This signal is emitted whenever the data of item has changed.

Add connect like this:

connect(tableWidget,
    SIGNAL(itemChanged(QTableWidgetItem *)), this, SLOT(on_any_itemChanged(QTableWidgetItem *)));

Problem

HI, I have some data there in my tablewidget and it is editable. My intention is to take data from edited row and column. IS it possible. Is it possible to check the edited row and column. Any specific signal is there?

Original source