RE: RadioGroup in TD

2008-03-20 Thread i ii
())); // what to do here? item.add(new Radio(choice2, new Model())); // what to do here? } } Date: Thu, 20 Mar 2008 03:20:07 + From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: Re: RadioGroup in TD Hello, You can use a RadioChoice for this case, like: table tr wicket:id

Re: RadioGroup in TD

2008-03-20 Thread Michael O'Cleirigh
(new Radio(choice2, new Model())); // what to do here? } } Date: Thu, 20 Mar 2008 03:20:07 + From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: Re: RadioGroup in TD Hello, You can use a RadioChoice for this case, like: table tr wicket:id=choice1/tr tr wicket:id=choice2/tr /table

RE: RadioGroup in TD

2008-03-19 Thread i ii
i tried to add html: table gth; td gth; input wicket:id=rd1 type=radio / gth; /td gth; td gth; input wicket:id=rd2 type=radio / gth; /td gth; /table gth; From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: RadioGroup in TD Date: Wed, 19 Mar 2008 18:16:26 +

Re: RadioGroup in TD

2008-03-19 Thread Igor Vaynberg
put radiogroup around the table -igor On Wed, Mar 19, 2008 at 11:20 AM, i ii [EMAIL PROTECTED] wrote: i tried to add html: table gth; td gth; input wicket:id=rd1 type=radio / gth; /td gth; td gth; input wicket:id=rd2 type=radio / gth; /td gth; /table gth; From:

RE: RadioGroup in TD

2008-03-19 Thread i ii
will that work with more than one RadioGroup in different TD? i would put RadioGroup around RadioGroup? Date: Wed, 19 Mar 2008 11:22:02 -0700 From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: Re: RadioGroup in TD put radiogroup around the table -igor On Wed, Mar 19

RE: RadioGroup in TD

2008-03-19 Thread i ii
putting RadioGroup around table does not work :( each row has 2 TD that together make RadioGroup. how to get this to work? From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: RE: RadioGroup in TD Date: Wed, 19 Mar 2008 18:28:30 + will that work with more than one RadioGroup

Re: RadioGroup in TD

2008-03-19 Thread Igor Vaynberg
: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: Re: RadioGroup in TD put radiogroup around the table -igor On Wed, Mar 19, 2008 at 11:20 AM, i ii [EMAIL PROTECTED] wrote: i tried to add html: table gth; td gth; input wicket:id=rd1

RE: RadioGroup in TD

2008-03-19 Thread i ii
this does not work because each TR has its own RadioGroup (2 TD with radio in each) so i cannot wrap whole table. how to get this to work? Date: Wed, 19 Mar 2008 12:31:24 -0700 From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: Re: RadioGroup in TD you would have one RadioGroup

Re: RadioGroup in TD

2008-03-19 Thread Michael O'Cleirigh
) so i cannot wrap whole table. how to get this to work? Date: Wed, 19 Mar 2008 12:31:24 -0700 From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: Re: RadioGroup in TD you would have one RadioGroup around the table and Radio inside td -igor On Wed, Mar 19, 2008 at 11:28 AM, i ii