Mostly fixed now. There was also a bug in my controller code that was complicating things.
One problem remains. With readonly=True, the field still shows the dictionary key rather than the value. On Oct 10, 5:09 pm, Cliff <[email protected]> wrote: > Made the change as recommended - still not working. > > On Oct 10, 5:01 pm, Cliff <[email protected]> wrote: > > > > > Wait a minute, though. I want a drop down menu. > > > So if I do this: > > Field('status', 'string', requires = IS_IN_SET({'A' : 'Apple', 'B': > > 'Banana'})) > > > I will get a drop down? > > > On Oct 10, 4:40 pm, Bruno Rocha <[email protected]> wrote: > > > > On Mon, Oct 10, 2011 at 5:38 PM, Cliff <[email protected]> wrote: > > > > Anthony, > > > > > I don't want multiple values. I just want one of those values. > > > > If you want only one value, why are you using list:string? > > > > change to > > > > Field('status', 'string'),

