Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #12765 > unrolled thread
| Started by | Thomas Jollans <t@jollybox.de> |
|---|---|
| First post | 2011-09-05 12:40 +0200 |
| Last post | 2011-09-05 12:40 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: Hello, and request for help with 'dynamic grids' Thomas Jollans <t@jollybox.de> - 2011-09-05 12:40 +0200
| From | Thomas Jollans <t@jollybox.de> |
|---|---|
| Date | 2011-09-05 12:40 +0200 |
| Subject | Re: Hello, and request for help with 'dynamic grids' |
| Message-ID | <mailman.770.1315219182.27778.python-list@python.org> |
On 05/09/11 07:18, Simon Cropper wrote: > I am looking for the ability to create dynamic grids in a window but > can't for the life of me find how to do this. It depends on which windowing toolkit you're planning to use. If you use PyGTK, you'd want a TreeView widget to display the list. Fill a ListStore instance with your data and give that to the TreeView. You can implement filtering and sorting on top of that using TreeModelFilter and TreeModelSort. LibreOffice and OpenOffice have database management components (I haven't used them, I assume they're somewhat similar to MS Access) - and they can be scripted using Python. Depending on what you're doing, and what you're planning to do in the future (re learning investment), that might be worth looking into. Thomas
Back to top | Article view | comp.lang.python
csiph-web