Hi,

1) I have setEditTriggers(QAbstractItemView::AllEditTriggers ) in the constructor of my derived QTableView class (which shouldn't be necessary), and

2) I know that basic signals/slots are working since on_MyTable_activated(const QModelIndex& idx) works and idx does refer to the index of the cell I clicked on, and

3) MyTable->model()->data(idx, Qt::EditRole) returns the actual contents of the cell.

Yet no amount of clicking, keypresses, etc. will allow me to edit the cells, anyone know what's going on? NB model() is in this case a QSortFilterProxyModel, but that doesn't seem like it should make a difference...

Matt