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 working and select working perfectly.
How I want to use the tree view and also get it to work with selection and scrollbar. If anyone can assist correct my code to use the tree view instead and point out my mistakes. I have commented the tree view code.
JavaScript
x
308
308
1
from tkinter import *
2
from app_backend import Database
3
from tkinter import ttk
4
class Database:
5
def __init__(self):
6
self.conn = pymysql.connect(host="localhost",user="usrname",
7
password="",database="database",connect_timeout=10)
8
self.cur = self.conn.cursor()
9
self.cur.execute("SELECT * FROM property_damage_claim")
10
self.conn.ping(reconnect=True)
11
#we will leave the database open here.
12
13
14
15
16
17
def insert(self,clf_name,cll_name,contact,policy,Insurance,in_contact,status):
18
self.conn.ping(reconnect=True)
19
self.cur.execute("INSERT INTO property_damage_claim VALUES (
20
NULL,%s,%s,%s,%s,%s,%s,%s)",(clf_name,cll_name,contact,policy,
21
Insurance,in_contact,status))
22
self.conn.commit()
23
24
def view(self):
25
self.conn.ping(reconnect=True)
26
self.cur.execute("SELECT * FROM property_damage_claim")
27
rows = self.cur.fetchall()
28
return rows
29
30
31
def search(self,clf_name ='',cll_name ='',contact ='',policy='',Insurance='',in_contact='',status=''):
32
self.conn.ping(reconnect=True)
33
self.cur.execute("SELECT * FROM property_damage_claim WHERE clf_name=%s OR
34
cll_name=%s OR contact=%s OR policy=%s OR Insurance=%s OR in_contact=%s OR
35
status=%s",(clf_name,cll_name,contact,policy,Insurance,in_contact,status))
36
rows = self.cur.fetchall()
37
return rows
38
39
40
def delete(self,id):
41
self.conn.ping(reconnect=True)
42
self.cur.execute("DELETE FROM property_damage_claim WHERE id=%s",(id,))
43
self.conn.commit()
44
45
46
def update(self,id,clf_name,cll_name,contact,policy,Insurance,in_contact,status):
47
self.conn.ping(reconnect=True)
48
self.cur.execute("UPDATE property_damage_claim SET clf_name=%s, cll_name=%s, contact=%s,
49
policy=%s, Insurance=%s, in_contact=%s, status=%s WHERE id=%s",(clf_name,cll_name,
50
contact,policy,Insurance,in_contact,status,id))
51
self.conn.commit()
52
53
54
55
def __del__(self):
56
self.conn.close()
57
58
59
60
61
62
63
64
65
66
db = Database()
67
68
def selected_row(event):
69
try:
70
global selected_content
71
index = student_list.curselection()[0]
72
selected_content = student_list.get(index)
73
e1.delete(0,END)
74
e1.insert(END,selected_content[1])
75
76
e2.delete(0,END)
77
e2.insert(END,selected_content[2])
78
79
e3.delete(0,END)
80
e3.insert(END,selected_content[3])
81
82
e4.delete(0,END)
83
e4.insert(END,selected_content[4])
84
85
e5.delete(0,END)
86
e5.insert(END,selected_content[5])
87
88
e6.delete(0,END)
89
e6.insert(END,selected_content[6])
90
91
e7.delete(0,END)
92
e7.insert(END,selected_content[7])
93
except IndexError:
94
pass
95
96
# connecting the backend functions
97
def view_all():
98
student_list.delete(0,END)
99
for row in db.view():
100
student_list.insert(END,row)
101
102
def search_record():
103
student_list.delete(0,END)
104
for row in db.search(clf_name.get(),cll_name.get(),contact.get(),
105
policy.get(),Insurance.get(),in_contact.get(),status.get()):
106
student_list.insert(END,row)
107
108
109
def add_record():
110
try:
111
if cll_name.get():
112
db.insert(clf_name.get(),cll_name.get(),contact.get(),policy.get(),
113
Insurance.get(),in_contact.get(),status.get())
114
student_list.delete(0,END)
115
student_list.insert(END,(clf_name.get(),cll_name.get(),contact.get(),
116
policy.get(),Insurance.get(),in_contact.get(),status.get()))
117
e1.delete(0,END)
118
e2.delete(0,END)
119
e3.delete(0,END)
120
e4.delete(0,END)
121
e5.delete(0,END)
122
e6.delete(0,END)
123
e7.delete(0,END)
124
except:
125
print("tcl Error")
126
127
def delete_record():
128
db.delete(selected_content[0])
129
e1.delete(0,END)
130
e2.delete(0,END)
131
e3.delete(0,END)
132
e4.delete(0,END)
133
e5.delete(0,END)
134
e6.delete(0,END)
135
e7.delete(0,END)
136
137
138
view_all()
139
140
141
def update_record():
142
db.update(selected_content[0],clf_name.get(),cll_name.get(),
143
contact.get(),policy.get(),Insurance.get(),in_contact.get(),status.get())
144
view_all()
145
146
def new_record():
147
e1.delete(0,END)
148
e2.delete(0,END)
149
e3.delete(0,END)
150
e4.delete(0,END)
151
e5.delete(0,END)
152
e6.delete(0,END)
153
e7.delete(0,END)
154
155
156
157
window = Tk()
158
159
window.geometry("1000x2000")
160
161
bg = PhotoImage(file = "bgg.gif")
162
163
label1 = Label( window, image = bg)
164
label1.place(x = 0, y = 0)
165
166
167
168
window.wm_title("Goodwill Brokers")
169
170
wr1=LabelFrame(window, text="")
171
wr2=LabelFrame(window, text="Client Data")
172
wr3=LabelFrame(window, text="Search")
173
wr4=LabelFrame(window, text="Client List")
174
175
wr1.pack(fill="both", expand="no", padx="20", pady="10")
176
wr2.pack(fill="both", expand="no", padx="20", pady="10")
177
wr3.pack(fill="both", expand="no", padx="20", pady="10")
178
wr4.pack(fill="both", expand="no", padx="20", pady="10")
179
180
# GUI Components
181
# Labels
182
lb_title = ttk.Label(wr1,text="Goodwill Brokers".upper())
183
lb_title.grid(row=0,column=0,columnspan=4,pady=15)
184
185
186
187
188
lb_date = ttk.Label(wr2,text="First Name:")
189
lb_date.grid(row=4,column=0,sticky="e")
190
191
lb_sname = ttk.Label(wr2,text="Last Name:")
192
lb_sname.grid(row=5,column=0,sticky="e")
193
194
lb_grade = ttk.Label(wr2,text="Contact:")
195
lb_grade.grid(row=6,column=0,sticky="e")
196
197
lb_class = ttk.Label(wr2,text="Policy:")
198
lb_class.grid(row=7,column=0,sticky="e")
199
200
lb_pname = ttk.Label(wr2,text="Insurance:")
201
lb_pname.grid(row=4,column=2,sticky="e")
202
203
lb_psign = ttk.Label(wr2,text="Contact Person/Entity:")
204
lb_psign.grid(row=5,column=2,sticky="e")
205
206
lb_cin = ttk.Label(wr2,text="Status:")
207
lb_cin.grid(row=6,column=2,sticky="e")
208
209
210
211
# Entries
212
213
clf_name = StringVar()
214
e1 = ttk.Entry(wr2,textvariable= clf_name)
215
e1.grid(row =4,column=1)
216
217
cll_name = StringVar()
218
e2 = ttk.Entry(wr2,textvariable= cll_name)
219
e2.grid(row =5,column=1)
220
221
contact = StringVar()
222
e3 = ttk.Entry(wr2,textvariable= contact)
223
e3.grid(row =6,column=1)
224
225
policy = StringVar()
226
e4 = ttk.Entry(wr2,textvariable= policy)
227
e4.grid(row =7,column=1)
228
229
Insurance = StringVar()
230
e5 = ttk.Entry(wr2,textvariable= Insurance)
231
e5.grid(row =4,column=3)
232
233
in_contact = StringVar()
234
e6 = ttk.Entry(wr2,textvariable= in_contact)
235
e6.grid(row =5,column=3)
236
237
status = StringVar()
238
e7 = ttk.Entry(wr2,textvariable= status)
239
e7.grid(row =6,column=3)
240
241
242
# Buttons
243
244
b1 = ttk.Button(wr3,text="View All", width=23,command=view_all)
245
b1.grid(row=8,column=0,columnspan=2,sticky="e",padx=10,pady=6)
246
247
b2 = ttk.Button(wr3,text="Search", width=23,command=search_record)
248
b2.grid(row=8,column=2,columnspan=2,sticky="w",padx=10,pady=6)
249
250
b3 = ttk.Button(wr3,text="Add", width=23,command=add_record)
251
b3.grid(row=9,column=0,columnspan=2,sticky="e",padx=10,pady=6)
252
253
b4 = ttk.Button(wr3,text="Update", width=23,command=update_record)
254
b4.grid(row=9,column=2,columnspan=2,sticky="w",padx=10,pady=6)
255
256
b5 = ttk.Button(wr3,text="Delete", width=23,command=delete_record)
257
b5.grid(row=10,column=0,columnspan=2,sticky="e",padx=10,pady=6)
258
259
b6 = ttk.Button(wr3,text="Close", width=23,command=window.destroy)
260
b6.grid(row=11,column=0,columnspan=2,sticky=E,padx=10,pady=6)
261
262
b7 = ttk.Button(wr3,text="Clear", width=23,command=new_record)
263
b7.grid(row=10,column=2,columnspan=2,sticky="w",padx=10,pady=6)
264
265
266
# Listbox and scrollbar
267
268
student_list= Listbox(wr4,height=6,width=60)
269
student_list.grid(row=12,column=0,rowspan=6,columnspan=3,sticky=E,padx=10,pady=10)
270
271
''' student_list = ttk.Treeview(wr4, columns=(1,2,3,4,5,6,7), show='headings')
272
student_list.grid()
273
274
student_list.column("#1", anchor=CENTER)
275
student_list.heading("#1", text="ID")
276
277
student_list.column("#2", anchor=CENTER)
278
student_list.heading("#2", text="FNAME")
279
280
student_list.column("#3", anchor=CENTER)
281
student_list.heading("#3", text="LNAME")
282
283
student_list.column("#4", anchor=CENTER)
284
student_list.heading("#4", text="LNAME")
285
286
student_list.column("#5", anchor=CENTER)
287
student_list.heading("#5", text="LNAME")
288
289
student_list.column("#6", anchor=CENTER)
290
student_list.heading("#6", text="LNAME")
291
292
student_list.column("#7", anchor=CENTER)
293
student_list.heading("#7", text="LNAME")
294
295
'''
296
297
sb1 = Scrollbar(wr4)
298
sb1.grid(row=12,column=3,rowspan=6,sticky=W)
299
300
student_list.configure(yscrollcommand=sb1.set)
301
sb1.configure(command=student_list.yview)
302
303
# get the selected row from Listox to use Delete and Update Commands
304
student_list.bind('<<ListboxSelect>>',selected_row)
305
306
window.resizable(0,0)
307
window.mainloop()
308
Advertisement
Answer
So I figured this out after a few research here and there. You need to first create the tree view below
Create a Treeview Scrollbar
JavaScript
1
43
43
1
tree_scroll = Scrollbar(wr4)
2
tree_scroll.grid(row=12,column=3,rowspan=6,sticky=W)
3
4
# Create The Treeview
5
6
student_list = ttk.Treeview(wr4, yscrollcommand=tree_scroll.set,
7
selectmode="extended",show='headings')
8
student_list.grid()
9
10
# Configure the Scrollbar
11
12
tree_scroll.config(command=student_list.yview)
13
14
# Define Our Columns
15
16
student_list['columns'] = ("ID", "F_Name", "L_Name", "Contact",
17
"Policy", "Insurance", "Contact P/E", "Status")
18
19
# Format Our Columns
20
21
student_list.column("#0", width=0, stretch=NO)
22
student_list.column("ID", anchor=W, width=50)
23
student_list.column("F_Name", anchor=W, width=80)
24
student_list.column("L_Name", anchor=CENTER, width=80)
25
student_list.column("Contact", anchor=CENTER, width=120)
26
student_list.column("Policy", anchor=CENTER, width=120)
27
student_list.column("Insurance", anchor=CENTER, width=120)
28
student_list.column("Contact P/E", anchor=CENTER, width=120)
29
student_list.column("Status", anchor=CENTER, width=150)
30
31
32
# Create Headings
33
34
student_list.heading("#0", text="", anchor=W)
35
student_list.heading("ID", text="ID", anchor=W)
36
student_list.heading("F_Name", text="F_Name", anchor=W)
37
student_list.heading("L_Name", text="L_Name", anchor=CENTER)
38
student_list.heading("Contact", text="Contact", anchor=CENTER)
39
student_list.heading("Policy", text="Policy", anchor=CENTER)
40
student_list.heading("Insurance", text="Insurance", anchor=CENTER)
41
student_list.heading("Contact P/E", text="Contact P/E", anchor=CENTER)
42
student_list.heading("Status", text="Status", anchor=CENTER)
43
and then create a function to displace this, using a loop.
JavaScript
1
9
1
def view_all():
2
for record in student_list.get_children():
3
student_list.delete(record)
4
for row in db.view():
5
6
student_list.insert(parent='', index='end', text='', values=.
7
(row[0], row[1], row[2], row[3], row[4], row[5], row[6],
8
row[7]))
9
calling the database class
JavaScript
1
9
1
class Database:
2
def view(self):
3
self.conn.ping(reconnect=True)
4
self.cur.execute("SELECT * FROM property_damage_claim")
5
rows = self.cur.fetchall()
6
return rows
7
8
9