hi all, i attemtped to use the cool displaytag to lay out a table but couldn't use struts or jstl tags inside of the table for editable components. so i switched to the old fashioned html tags. the problem there was that my action forms didn't pick up the values that had changed. so now i'm looking at laying out my table using struts and html table tags.
the problem i'm having is that i have a list of objects that i'm passing to my logic:iterate tag. inside my logic tag i have a bunch of <td> containing textboxes and checkboxes. these need to be uniquely named and contain values from the objects that i'm iterating through. but i can't get to the objects even when using the nested tags. here's a rough example of what i'm attemtping: <table> <tr><th> some header stuff </th></tr> <nested:iterate name="items"> <tr> <td><nested:text name="item" property="item" value="itemSeqNbr" /></td> </tr> </nested:iterate> <.table> the iteration works correctly, at least it's outputting the correct number of rows. however my textfield doesn't label correctly or contain the value of the attribute i put in the value="". do i have to package my iterator objects differently from the objects that i'm attempting to display? any suggestions? thanks andy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]