Hi there, I'm currently rewriting some protoype parts of an web application with struts. Unfortunately I've got to use 1.0.2, so I miss some neat opportunities...
Once again it's a dynamic forms problem, at least I think so... One page where I have the problem is the user administration part. Basically, you should be able to add new users, change the permissions of existing ones or delete them. So my pure JSP prototype with lots of ugly scriptlets looked something like this: ---------------------------------------------------------- New User: ____________ Profile [Adminstrator] |Submit| Existing Users: Delete? Name: Profile: [ ] User1 [User] [ ] User2 [Administrator] [ ] User3 [Owner] [Submit] ----------------------------------------------------------- The "[ ]" part below "Delete?" is supposed to be a checkbox, That "Profile" Stuff is a <select>. The number of users is variable, of course. So, what's the best practice for this kind of issue? As far as I could gather from RTFM & RTFML, I could model the lines as a Collection and just <logic:iterate> over them. That is, if I'd be using 1.1... I've got it working, but this involves scriptlets and poking around in the request, just as my initial code did. Sigh... ...Michael... -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

