RadioGroup and posted Values

2007-08-23 Thread Jan Kriesten
hi, I'm trying to get the posted value of a RadioGroup (within a converter of a textfield), but i only get the posted string values, not the model values of the radio elements: RadioGroup rg = new RadioGroup( takedown ); add( rg ); rg.add( new Radio( takedownFalse, new Model( false ) ) );

Re: RadioGroup and posted Values

2007-08-23 Thread Igor Vaynberg
hmm, dont know why you would do this inside a converter of another component but you can get to it like this: rg.convert(); rg.getconvertervalue(); -igor On 8/23/07, Jan Kriesten [EMAIL PROTECTED] wrote: hi, I'm trying to get the posted value of a RadioGroup (within a converter of a