I have a treeview, with some elements in it.
How can I get a list of all this data?
Is there something similar to this,
self.treeview.GetItems()
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’d say you get the model:
And then you have tons of different ways to access your data/items depending on what you want and how the model look… For more on that check http://pygtk.org
You could get first row by doing:
And also you could iterate through it…