Just for completion for googlers, you can still create associated labels as well: just use the ID attribute (I really like to have clickable labels).
Example for gender selection: <r:mailer:radiogroup name="gender"> <r:mailer:option id="male" value="male"/><label class="radiolabel" for="male">male</label> <r:mailer:option id="female" value="female" /><label class="radiolabel" for="female">female</label> </r:mailer:radiogroup> On Tuesday, December 16, 2008 3:31:56 PM UTC+1, Marcel Duss wrote: > > Thank you Sean > > That was the solution!! > > > On 15.12.2008, at 15:17, Sean Cribbs wrote: > > > By convention, radio buttons should have mutually exclusive values. > > Also, I'm not sure what the 'name' attribute is doing on your option > > tag. It's possible that that is causing your radio buttons to > > ignore the 'name' of the group. > > > > Sean > > > > Marcel Duss wrote: > >> Hi everybody > >> > >> I am using the mailer-extension and trying to set up a form with > >> radio buttons. > >> > >> But the behavior is not as expected. A selected radio button does > >> not exclude the others from being selected, in the contrary I am > >> able to select all of them. Here is the code I am using: > >> > >> <r:mailer:radiogroup name="radioGroup"> > >> <r:mailer:option name="one" value='yes'/> > >> <r:mailer:option name="two" value='no'/> > >> <r:mailer:option name="three" value='no'/> </ > >> r:mailer:radiogroup> > >> > >> I'd be very pleased to get some documentation or good advices for > >> that problem... > >> > >> Thank you. > >> > >> > >> _______________________________________________ > >> Radiant mailing list > >> Post: [email protected] <javascript:> > >> Search: http://radiantcms.org/mailing-list/search/ > >> Site: http://lists.radiantcms.org/mailman/listinfo/radiant > >> > > > > _______________________________________________ > > Radiant mailing list > > Post: [email protected] <javascript:> > > Search: http://radiantcms.org/mailing-list/search/ > > Site: http://lists.radiantcms.org/mailman/listinfo/radiant > > _______________________________________________ > Radiant mailing list > Post: [email protected] <javascript:> > Search: http://radiantcms.org/mailing-list/search/ > Site: http://lists.radiantcms.org/mailman/listinfo/radiant > >
