Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
@opengpu2
When you create the signal in tableEditDelegate make sure its a const e.g
signals: void currentIndex(const QModelIndex &index) const;
then you can connect it in the constructor for e.g
connect(this, SIGNAL(currentIndex(QModelIndex)),SLOT(setCurrentIndex(QModelIndex)),Qt::DirectConnection);