RE: Need Ideas for This Puzzle

2004-10-22 Thread Wiebe de Jong
before sending back the response. Wiebe -Original Message- From: Caroline Jen [mailto:[EMAIL PROTECTED] Sent: Friday, October 22, 2004 10:59 AM To: Struts Users Mailing List Subject: RE: Need Ideas for This Puzzle What about something like: <% boolean checked = isChecked("a&q

[OT]: Need Ideas for This Puzzle

2004-10-22 Thread DGraham
ng List" <[EMAIL PROTECTED]> To Struts Users Mailing List <[EMAIL PROTECTED]> cc Subject Re: Need Ideas for This Puzzle Hi, Caroline, Just a little follow up to all these good suggestions.  I agree that if you use the Action, then you should definitely use helper cla

Re: Need Ideas for This Puzzle

2004-10-22 Thread Michael McGrady
Hi, Caroline, Just a little follow up to all these good suggestions. I agree that if you use the Action, then you should definitely use helper classes and hopefully decouple them from the action. I like to use multithreading in the helper classes generally. The suggestions about using the Ac

RE: Need Ideas for This Puzzle

2004-10-22 Thread Caroline Jen
the checkboxes, the jsp will read the bean > and display only the > checkboxes that have a corresponding true value. > > In the action that saves the data from this page, > process only those > checkboxes that were displayed. > > Wiebe > > -Original Message-

Re: Need Ideas for This Puzzle

2004-10-22 Thread Wendy Smoak
From: "Caroline Jen" <[EMAIL PROTECTED]> > The challege comes as the "roles" of the web site > users are introduced. According to the role of the > web site user, I have to display certain groups (not > all the groups) and certain sub-groups (not all > sub-groups within a group) to him/her. > How

RE: Need Ideas for This Puzzle

2004-10-22 Thread Wiebe de Jong
EMAIL PROTECTED] Sent: Friday, October 22, 2004 9:03 AM To: [EMAIL PROTECTED] Subject: Need Ideas for This Puzzle The puzzle relates to displaying check boxes (checkbox or multibox). What I have are members who belong to professional groups and sub-groups. E.g., Group A with sub-groups A-1, A-2, A-

RE: Need Ideas for This Puzzle

2004-10-22 Thread Varley, Roger
> > There are at least two good solutions. I like the second one best. > > > 1. Tag Conditional Logic Solution > > Just use the , and tags. I assume, > Caroline, > that you are using JSTL. If not, then there are equivalent solutions > with Struts logic tags. > > > 2 Action Condition

Re: Need Ideas for This Puzzle

2004-10-22 Thread Michael McGrady
There are at least two good solutions. I like the second one best. 1. Tag Conditional Logic Solution Just use the , and tags. I assume, Caroline, that you are using JSTL. If not, then there are equivalent solutions with Struts logic tags. 2 Action Conditional Delivery Solution Or, you can

Need Ideas for This Puzzle

2004-10-22 Thread Caroline Jen
The puzzle relates to displaying check boxes (checkbox or multibox). What I have are members who belong to professional groups and sub-groups. E.g., Group A with sub-groups A-1, A-2, A-3, A-4. Group B with sub-groups B-1, B-2, B-3 Group C with sub-groups C-1, C-2, C-3, C-4, C-5, C-6 etc. web si