Re: [Tkinter]Validation to multiple Entry widgets

2018-02-17 Thread Beppe
Il giorno sabato 17 febbraio 2018 20:21:53 UTC+1, Peter Otten ha scritto: > Beppe wrote: > > > I would validate values input, on key, in multiple Entry widgets create at > > run time > > > > I wrote this snip but even if the entry are created and the callback work > > well the relative value is m

Re: [Tkinter]Validation to multiple Entry widgets

2018-02-17 Thread Peter Otten
Beppe wrote: > I would validate values input, on key, in multiple Entry widgets create at > run time > > I wrote this snip but even if the entry are created and the callback work > well the relative value is missing > my_list = (2.14,18.3,76.4,2.38,0.425,2.68,1.09,382,8.59,0.495)

[Tkinter]Validation to multiple Entry widgets

2018-02-17 Thread Beppe
hi all, I would validate values input, on key, in multiple Entry widgets create at run time I wrote this snip but even if the entry are created and the callback work well the relative value is missing #!/usr/bin/python3 import tkinter as tk class Application(tk.Frame): def __init__(self, m