Hello,

I would like to detect when a cell is editing or just start edit.

At this moment, I could known when end edit with this code

Qt Code:
  1. itemDelegate = new QItemDelegate();
  2. connect(itemDelegate, SIGNAL(closeEditor(QWidget*)), this, SLOT(execute()));
  3. ui.table->setItemDelegateForColumn(4, itemDelegate);
To copy to clipboard, switch view to plain text mode 

But I dont find how could I deteted when user star edit a cell.
any advice??

Thank you in advance.