Greetings.

I have run into an odd situation, and I am looking for some input on how to handle it. Specifically, I have a "Boss" table (in this case Archive), and several smaller tables, but with identical Columns (Sets). The other tables are basically mirroring whats on various media devices (raid arrays, raid racks, DVD Juke Box sets, etc).

Now, the Archive table basically defines the whole thing, so I am pulling the titles for the columns from that. The question is, how do I ensure that the data from another table is loaded/displayed with the columns in the same order as the headers?

My current method is not working, and my Struts is not good enough to figure a way to make this work.

Thanks,
Steve


<table align="center" cellspacing="0" border="1" cellpadding="2"> <!-- Header Row --> <tr> <logic:iterate id="clipTitle" name="editClipTitles" property="nested"> <td><bean:write name="clipTitle"/></td> </logic:iterate> </tr> <!-- Table Body --> <logic:iterate id="row" name="clipValues" property="nested"><tr> <logic : iterate id="fieldValue" name="row" property="nested"><td> <bean : write name="fieldValue"/> </td></logic:iterate> </tr></logic:iterate> </table>

--
Java/J2EE Developer/Integrator
Co-Chair, Dallas/FortWorth J2EE Sig
214-724-7741


http://keelframework.org/documentation Keelgroup mailing list [EMAIL PROTECTED] http://lists.keelframework.com/listinfo.cgi/keelgroup-keelframework.com

Reply via email to