Quote Originally Posted by bookmarkernj View Post
How to merge two grids of QtableWidget instance into one grid?
The question is, how do you want to merge them? Merging is quite an abstract concept.

Anyway, with QTableWidget there is no other way around than just doing it by hand (ie. copying data from table to another). However, if merging means showing data of both tables next to each other in a single table, using model-based approach would certainly help in achieving a more elegant solution. The underlying model could be same in all views; the two distinct tables could have part of rows/columns hidden and the result table could show it all.