I have a program with a treeview. When a tree item is double clicked I bind a function to open an Entry field. What is the best way of getting the Entry field value? I can't help but think there is a better way than this:
def addEntry(event):
global item
item=Entry(parent).grid(column=0,row=0)
def itemGet():
global item
return item.get
tree.insert(parent,0,'basic',text='basic',tags=('basic')
tree.tag_bind('basic','<Double-1>',addEntry)
If I don't have the separate itemGet function it seems I can't access item's value later in the script because the function hasn't been called. I have played with the threading module some but don't know if I'm heading in the right direction. Any help/input/feedback is welcome.
Thanks!