Vince Fulco schrieb: > Dear PyQt experts- > > Can someone point me to a good working example of a QTableWidget with > multiple sections built into one table. I.E. I would like to display > raw observations, a set of summary data underneath it and a second set > of different summary data underneath that.
How about putting three different tables in a large scrollable canvas and disable the scrollbars for each table? Or use an MDI-like approach where you put each table into it's own window and add a button to arrange them below each other. That would allow to scroll through the raw data, while comparing it to the summary (which would be visible at the same time). Regards, -- Aaron "Optimizer" Digulla a.k.a. Philmann Dark "It's not the universe that's limited, it's our imagination. Follow me and I'll show you something beyond the limits." http://darkviews.blogspot.com/ http://www.pdark.de/ _______________________________________________ PyQt mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/pyqt
