-
QTableView questions
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
-
Re: QTableView questions
Access the header through the widget and hide() it.
-
Re: QTableView questions
Cool. That worked. Thanks