[ python-Bugs-1036406 ] Tix.Grid widgets not implemented yet

SourceForge.net noreply at sourceforge.net
Mon Apr 10 10:35:32 CEST 2006


Bugs item #1036406, was opened at 2004-09-28 20:35
Message generated for change (Comment added) made by loewis
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1036406&group_id=5470

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Tkinter
Group: Python 2.4
>Status: Closed
>Resolution: Fixed
Priority: 5
Submitted By: Christos Georgiou (tzot)
Assigned to: Martin v. Löwis (loewis)
Summary: Tix.Grid widgets not implemented yet

Initial Comment:
This code fails at the .pack method (.grid, .place too):

>>> import Tix
>>> r=Tix.Tk()
>>> g=Tix.Grid()
>>> g.pack()
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
  File "d:\PY.24\lib\lib-tk\Tkinter.py", line 1692, in 
pack_configure
    self.tk.call(
_tkinter.TclError: bad window path name ".8257088"

Tix Grids work though as shown here:

>>> r.tk.call('tixGrid', '.g1')
'.g1'
>>> r.tk.call('pack', '.g1')
''
>>> r.tk.call('.g1', 'set', '0', '0', '-text', 'hello!')
''

I intend to supply a patch, but I need to first 
understand better how Tkinter works (and therefore 
Tix.py); I create a bug so that anyone willing might help 
provide Python users with an often requested widget.

----------------------------------------------------------------------

>Comment By: Martin v. Löwis (loewis)
Date: 2006-04-10 10:35

Message:
Logged In: YES 
user_id=21627

This is fixed with patch #1462222.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1036406&group_id=5470


More information about the Python-bugs-list mailing list