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).
What is the best way to implement something like OnRowsAdded and OnRowsRemoved "events" for QTableWidget?
Hi,
What would you like to achieve ?
To know when rows are added to QTableWidget. I want the QTableWidget to emit a signal when rows are added and when rows are deleted. Something like connect(myTableWidget,&QTableWidget::OnRowsAdded,myClass,&MyClass::onRowsAddedSlot);
Since you are using a QTableWidget, you already know when you add/remove rows, you could emit these signals when doing that