user1050619
user1050619

Reputation: 20856

tkinter python entry not being displayed

I have created a Form with labels and entries..but for some reason the entries are not being created,

peoplegui.py

from tkinter import *
from tkinter.messagebox import showerror
import shelve
shelvename = 'class-shelve'
fieldnames = ('name','age','job','pay')

def makewidgets():
    global entries
    window = Tk()
    window.title('People Shelve')
    form = Frame(window)
    form.pack()
    entries = {}
    for (ix, label) in enumerate(('key',) + fieldnames):
        lab = Label(form, text=label)
        ent = Entry(form)
        lab.grid(row=ix, column=0)
        lab.grid(row=ix, column=1)
        entries[label] = ent
    Button(window, text="Fetch",  command=fetchRecord).pack(side=LEFT)
    Button(window, text="Update", command=updateRecord).pack(side=LEFT)
    Button(window, text="Quit",   command=window.quit).pack(side=RIGHT)    
    return window
def fetchRecord():
    print('In fetch')

def updateRecord():
    print('In update')


if __name__ == '__main__':
    window = makewidgets()
    window.mainloop()    

When I run it the labels are created but not the entries.

Upvotes: 0

Views: 141

Answers (1)

Ramchandra Apte
Ramchandra Apte

Reputation: 4079

You have forgetten to grid the entries.

Upvotes: 1

Related Questions