Hi, I have a Category business object looking like this:
------------------------------ public class Category { private Category parent; private Set<Category> children; //... } ------------------------------ I have a form that allows me to edit in information about a different object. This object is linked to zero, one or more Category objects. What's a good way to display this? I though of check boxes. The check boxes must be checked if the object is already attached to that Category. To me this seems to be kinda impossible right now. Any suggestions? cu mathias -- View this message in context: http://www.nabble.com/Working-with-dynamic-forms-tp24532787p24532787.html Sent from the Struts - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org