Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #106301 > unrolled thread

Re: tkinter Entry validation modes

Started byTerry Reedy <tjreedy@udel.edu>
First post2016-04-02 14:45 -0400
Last post2016-04-02 14:45 -0400
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: tkinter Entry validation modes Terry Reedy <tjreedy@udel.edu> - 2016-04-02 14:45 -0400

#106301 — Re: tkinter Entry validation modes

FromTerry Reedy <tjreedy@udel.edu>
Date2016-04-02 14:45 -0400
SubjectRe: tkinter Entry validation modes
Message-ID<mailman.370.1459622753.28225.python-list@python.org>
On 4/2/2016 11:11 AM, Mark Lawrence via Python-list wrote:
> A typical call to create an Entry field would be:-
>
> e = Entry(master, validate='all', ...)
>
> Once this call has been made is it possible to change the validation
> mode at runtime?

AFAIK, every keyword-only configuration option can be changed.

e['validate'] = xyz
e.config(validate=xyz)

-- 
Terry Jan Reedy

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web