Re: Radio button for a 3rd level list

2005-05-10 Thread Rick Reumann
Kalyan Ayyagari wrote the following on 5/10/2005 12:16 PM: Here is what I'm trying to do: I get the top level list from the backend. The list contains the other lists that I already described before. Apart from that it contains the information based on which I have to generate the UI. That is, my U

RE: Radio button for a 3rd level list

2005-05-10 Thread Kalyan Ayyagari
From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 10, 2005 11:00 AM To: Struts Users Mailing List Subject: Re: Radio button for a 3rd level list Kalyan Ayyagari wrote the following on 5/10/2005 10:47 AM: > > public class Component{ > int id; > > boolean amISelected; }

Re: Radio button for a 3rd level list

2005-05-10 Thread Rick Reumann
Kalyan Ayyagari wrote the following on 5/10/2005 10:47 AM: public class Component{ int id; boolean amISelected; } My JSP needs to have a radio button for each component. For example, say level3List has 3 components, red, green and blue. Then the JSP will have 3 radio buttons, one for red, one for g

Radio button for a 3rd level list

2005-05-10 Thread Kalyan Ayyagari
My form contains a list, say topLevelList. topLevelList in turn contains lists, lets say level2List(s). This level2List in turn contains lists, say level3List(s). Level3List contains objects of type Component. public class Component{ int id; boolean amISelected; } My JSP needs to