RadioChoice vs. RadioGroup

2012-04-24 Thread Richard W. Adams
Can someone explain the important differences (besides the API) between RadioChoice RadioGroup? What scenarios/factors would make one use one instead of the other? What are the tradeoffs? Etc. From my quick (perhaps naive) reading, they seem like equally plausible ways of doing the same

Re: RadioChoice vs. RadioGroup

2012-04-24 Thread Martin Grigorov
Hi, The difference is like DropDownChoice vs. Select components. The *Choice components generate their body by concatenating strings. Pros: lighter component Cons: not much control over the generated markup Select/RadioGroup need children components like SelectOption/Radio which themselves

RadioChoice vs RadioGroup

2008-03-24 Thread Patel, Sanjay
I am new to Wicket. Can anyone explain about the difference between RadioChoice and RadioGroup with example and when to use which? Thanks, Sanjay

Re: RadioChoice vs RadioGroup

2008-03-24 Thread Igor Vaynberg
radiochoice generates the html for you. radiogroup/radio allow you to define your own html. there are examples in wicket-examples of both. -igor On Mon, Mar 24, 2008 at 1:40 PM, Patel, Sanjay [EMAIL PROTECTED] wrote: I am new to Wicket. Can anyone explain about the difference between