how to get the value of selected item in ttk.treeview in Python?
Answers
Answered by
0
Explanation:
You can get a list of the selected items with the selection method of the widget. It will return a list of item ids. You can use the item method to get information about each item.
Similar questions