Quote Originally Posted by spirit View Post
maybe it's not a best solution,but anyway, block signals when you create items and then you can use itemChanged or cellChanged.
ok! It's seems to work cellChanged, almost:

how to disable cellChange when I'm creating and putting Item into TableWiew:
Qt Code:
  1. QTableWidgetItem *newItem1 = new QTableWidgetItem(tr("%1").arg(query.value(1).toString()));
  2. tmp_table->setItem(row, col++, newItem1);
To copy to clipboard, switch view to plain text mode 

?