I am transfering my database to a tkinter window by using ttk.treeview with this code.
for row in database.Clients.find({}, {'_id': 0}):
row
tree.insert("", END, values=row.values())
and here is a snopshot of it.
This view is okay for me but if I add a new customer with address for example "X street" the "X" part is shown under the address column and "street" part is shown under the column next to it. That's not just for address entry. For every entry with space same thing happen. What can I do to show "X Street" entry under the address column?
question from:
https://stackoverflow.com/questions/66048478/displaying-space-seperated-input-in-same-column 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…