Re: [Tutor] Tables in Tkinter

2017-03-05 Thread Alan Gauld via Tutor
On 04/03/17 01:47, Alan Gauld via Tutor wrote: >> Can you please guide me to an example related to this problem? I had a play and here is a simple DisplayTable widget. Its still not a scrollable frame (although i might get round to that later...) But it takes a list of headings and a 2D list of

Re: [Tutor] Tables in Tkinter

2017-03-03 Thread Alan Gauld via Tutor
On 03/03/17 21:15, Pooja Bhalode wrote: > Hi Alan, > > Can you please guide me to an example related to this problem? I do not > know how to use the scrollable frame, set backgrounds etc. > Sorry, I am new to tables in Tkinter. I could not find any examples as well WE are all new to tables in Tki

Re: [Tutor] Tables in Tkinter

2017-03-03 Thread Pooja Bhalode
Hi Alan, Can you please guide me to an example related to this problem? I do not know how to use the scrollable frame, set backgrounds etc. Sorry, I am new to tables in Tkinter. I could not find any examples as well Please let me know. Thank you Pooja On Fri, Mar 3, 2017 at 2:35 PM, Alan Gauld

Re: [Tutor] Tables in Tkinter

2017-03-03 Thread Alan Gauld via Tutor
On 03/03/17 16:07, Pooja Bhalode wrote: > The table that I am trying to get is a table with scrollable rows. I just > want to display the data in the table in the Tkinter window. I do not wish > to make it interactive, since just want to display the data. In that case you could just use a scroll

[Tutor] Tables in Tkinter

2017-03-03 Thread Pooja Bhalode
Hi, I am trying to use tkintertable in Python 2.7 to create a table in GUI using Tkinter. The table that I am trying to get is a table with scrollable rows. I just want to display the data in the table in the Tkinter window. I do not wish to make it interactive, since just want to display the dat

Re: [Tutor] Tables in Tkinter

2017-03-02 Thread Pooja Bhalode
Hi Alan, Thank you for that advice. Sorry, I should have caught that. Also, i can look into the documentation of tkintertable for creating the table. Thank you Pooja On Thu, Mar 2, 2017 at 10:12 AM Alan Gauld via Tutor wrote: > On 02/03/17 14:25, Pooja Bhalode wrote: > > > when I tried to inst

Re: [Tutor] Tables in Tkinter

2017-03-02 Thread Alan Gauld via Tutor
On 02/03/17 14:25, Pooja Bhalode wrote: > when I tried to install tkintertable using pip: i got the following errors: > > OSError: [Errno 13] Permission denied: > '/Library/Python/2.7/site-packages/Pmw' Based on this I'm guessing you need to run pip with sudo? -- Alan G Author of the Learn to

Re: [Tutor] Tables in Tkinter

2017-03-02 Thread Pooja Bhalode
I am currently using python 2.7 in mac system. I think tkinter would be a problem since I use Tkinter for Python 2.7. But I do not know the corresponding part of tkintertable for python 2.7 Thank you Pooja On Thu, Mar 2, 2017 at 9:25 AM, Pooja Bhalode wrote: > Hi Alan, > > Sorry for being ambi

Re: [Tutor] Tables in Tkinter

2017-03-02 Thread Pooja Bhalode
Hi Alan, Sorry for being ambiguous earlier. I can make it more clear in this email. I am planning on creating a scrollable table (grid of values) with title labels for each column and rows present in it and a title for the overall table. I saw it online that to create a table in tkinter, I can us

Re: [Tutor] Tables in Tkinter

2017-03-01 Thread Alan Gauld via Tutor
On 01/03/17 23:40, Pooja Bhalode wrote: > I am trying to create normal tables in Tkinter. First you need to define what a "normal table" is. There is no such thing in standard Tkinter, so any kind of table is not normal. Do you want a simple grid of values? Do you want a spreadsheet type grid w

[Tutor] Tables in Tkinter

2017-03-01 Thread Pooja Bhalode
Hi, I am trying to create normal tables in Tkinter. Can someone please guide me as to what functions I can use, I looked into tkintertable, but that does not seem to work for me. I tried installing it but it gave me a bunch of errors while installation and does not work. Is there any other simple