Re: Radio and Radio Group problems

2009-07-17 Thread Igor Vaynberg
where and how are you actually pulling out the selection? -igor On Fri, Jul 17, 2009 at 1:21 AM, Trojahn, Cassia wrote: > Igor Vaynberg wrote: >> >> where is your Form in your example? >> >> -igor >> >> On Thu, Jul 16, 2009 at 7:04 AM, Trojahn, >> Cassia wrote: >> >>> >>> Trojahn, Cassia wrote: >

Re: Radio and Radio Group problems

2009-07-17 Thread Trojahn, Cassia
Igor Vaynberg wrote: where is your Form in your example? -igor On Thu, Jul 16, 2009 at 7:04 AM, Trojahn, Cassia wrote: Trojahn, Cassia wrote: Always the last of the list is the selected. I had tried also this proposal .. and it does not work. Michael O'Cleirigh wrote: Hello,

Re: Radio and Radio Group problems

2009-07-16 Thread Igor Vaynberg
where is your Form in your example? -igor On Thu, Jul 16, 2009 at 7:04 AM, Trojahn, Cassia wrote: > Trojahn, Cassia wrote: >> >> Always the last of the list is the selected. >> I had tried also this proposal .. and it does not work. >> >> Michael O'Cleirigh wrote: >>> >>> Hello, >>> >>> I don't t

Re: Radio and Radio Group problems

2009-07-16 Thread Trojahn, Cassia
Trojahn, Cassia wrote: Always the last of the list is the selected. I had tried also this proposal .. and it does not work. Michael O'Cleirigh wrote: Hello, I don't think you need to track the selected (true/false) state your self. Let the radio group model do it automatically for you like:

Re: Radio and Radio Group problems

2009-07-16 Thread Trojahn, Cassia
Always the last of the list is the selected. I had tried also this proposal .. and it does not work. Michael O'Cleirigh wrote: Hello, I don't think you need to track the selected (true/false) state your self. Let the radio group model do it automatically for you like: listLanguages.add(new

Re: Radio and Radio Group problems

2009-07-15 Thread Michael O'Cleirigh
Hello, I don't think you need to track the selected (true/false) state your self. Let the radio group model do it automatically for you like: listLanguages.add(new NameWrapper("English", "en", ""); listLanguages.add(new NameWrapper("German", "de", "")); listLanguages.add(new NameWrapper("Fren

Radio and Radio Group problems

2009-07-15 Thread Trojahn, Cassia
Dear All I have a problem when using the Radio component. Using a list of languages, where each item is a NameWrapper object with a property "selected". The property "selected" is associated to the radio component. However, when presenting to the user the corresponding list of radios, the lang