Re: tkinter: get ttk.combobox choices from another class [RESOLVED]

2019-03-03 Thread Chris Angelico
On Mon, Mar 4, 2019 at 9:34 AM Rich Shepard wrote: > > On Mon, 4 Mar 2019, Chris Angelico wrote: > > > Specifically, from my reading of your example, you need a list of > > strings for the applicable values. > > Chris, > > Yep. And I was not sure just how I would get these unitl I read your > answ

Re: tkinter: get ttk.combobox choices from another class [RESOLVED]

2019-03-03 Thread Rich Shepard
On Mon, 4 Mar 2019, Chris Angelico wrote: Specifically, from my reading of your example, you need a list of strings for the applicable values. Chris, Yep. And I was not sure just how I would get these unitl I read your answer. So you need to get a list of strings from SQLAlchemy. It's been

Re: tkinter: get ttk.combobox choices from another class

2019-03-03 Thread Chris Angelico
On Mon, Mar 4, 2019 at 8:46 AM Rich Shepard wrote: > In the views module in his book the one form has a ttk.Combobox and lists > the available values in an input_args dictionary. To allow addition of new > choices for this column in my application they are in a separate class. Specifically, from