PDA

View Full Version : QTableView questions



db
13th September 2007, 14:43
I have a group of data that I want to display in column format with each row pertaining to a new occurrances. I figured that I could use the QTableView or QTableWidget. So looking into it the first question I have is:

How do you turn OFF the vertiacl header?

Then further investgation (of code snipettes) has gotten me a little lost so next question is:

Where can I find a good example of code in which QTableView is being used?

Thanks

wysota
13th September 2007, 15:34
Access the header through the widget and hide() it.

db
13th September 2007, 16:18
Cool. That worked. Thanks