A package allows interactive spreadsheet-style tables to be added into a Tkinter application.
Questions tagged [tkintertable]
9 questions
1
vote
0 answers
how can i solve this problem>> TclError: Item 236716 already exists
I want to display my csv data in a tkinter table, but when i run, it shows an error!
TclError: Item 236716 already exists
how can i fix it please?
csvreader=csv.reader(file)
l1=[] #liste des en-têtes de colonne
l1=next(csvreader) #column…

Floriza
- 11
- 1
1
vote
1 answer
Dictionary of dictionaries from data frame
I have created a data frame from data got from database. I need to convert the data frame to dictionary with format mentioned below.
{ 0 : {'column1': 'value', 'column2' : 'value',....},
1 : {'column1': 'value', 'column2' : 'value',....},....
I…

Sriram
- 169
- 1
- 9
1
vote
1 answer
how to update window(table) a table in tksheet?
Hello friends how can I update the window in tksheet. I have a database.Which connects to Postgresql and pulls out data. In addition,
I can choose the date of the data, from which to which.After starting,
I select the dates and click on the "Get…

Creator X
- 41
- 6
0
votes
1 answer
How do I change a listbox view in my python Tkinter project to a tree view
I tried to use tree view to display the data of my project output but consistently got below error for all the button clicks
I then switched to Listbox view and I was able to execute my project with no errors, all data being displayed, scrollbar…

Mark Acquaisie
- 33
- 1
- 4
0
votes
1 answer
Disable edit option in tkinter table
This is my data frame
Date name count
0 2015-01-02 Adam 1
1 2015-02-02 David 1
2 2015-02-02 Adam 1
3 2015-03-02 David 2
4 2015-03-02 Hardik 1
5 2015-03-01 David 2
With this data frame I have created and…

Sriram
- 169
- 1
- 9
0
votes
0 answers
tkinter scrollbar not working for complete table
I am trying to display some data in table. I have tried adding a scrollbar to the table to view all the columns of table. But the scrollbar is not getting scrolled to the end of table. It just stops after scrolling a little.
Here is the code I have…

Anmol
- 57
- 1
- 7
0
votes
1 answer
How do I properly work with Tables with tkinter?
I've been looking for a good python module to work with tables. In the past, I made a personal C# project, and using tables was pretty straight forward.
I found out that my solution could be in dmnfarrell's "tkintertable"…

Carlos Echeverria St
- 35
- 5
0
votes
1 answer
CSV file with some empty rows in Python with Tkintertable
I fill in the table as any data and then export the file (CSV). OK so far. But when I open the CSV file I notice empty rows between the rows I filled.
How to solve it? Run the code, fill the table, export and see the file to understand.
from…

Leonardo
- 120
- 9
0
votes
1 answer
tkintertable data how to update
I'm using tkintertable git cloned from github. Basically using the same example as the other SO question.
How do you add a raw of data into the table after the tkinter has been in its mainloop? How do you update data in the current table?
In the…

minghua
- 5,981
- 6
- 45
- 71