• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Nasty code pls

 
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<logic:iterate id="employee" name="REC-CHECKLIST">
<logic:iterate id="customer" name="REC-CUSLIST">
<logic:iterate id="additional" name="REC-ADDLIST">
<tr>
<td width=2%><input type="text" size="2" value="1" name="txt"> </td>
<td width=10%><html:text property="cbCheckNo" name="employee" /></td>
<td width=10%><html:text property="cbDate0" name="employee" /></td>
<td width=10%><html:text property="cbBank" name="employee" /></td>
<td width=10%><html:text property="cbBranch"name="employee" /></td>
<td width=10%><html:text property="cbAmount" name="employee" /></td>
<td width=10%><html:text property="cbCreACNo" name="additional" /></td>
<td width=10%><html:text property="cbRetTo" name="additional" /></td>
<td width=10%><html:text property="cbRetChg" name="additional" /></td>
<td width=10%><html:text property="cbDebAC" name="additional" /></td>
<td width=10%><html:text property="cbCusName" name="customer" /></td>
</tr>
</logic:iterate>
</logic:iterate>
</logic:iterate>


I AM GETTING THREE ARRAY LIST BUT IT HAS TO DISPLAY 2 ROWS ONLY AM USING ONE FORM BEAN FOR THREE ARRAY LIST
THE FORM IS
--------------

public String cbCheckNo;
public String cbDate;
public String cbBank;
public String cbBranch;
public String cbAmount;
public String cbCreACNo;
public String cbCusName;
public String cbRetTo;
public String cbRetChg;
public String cbDebAC;
public String cbTotAmt;
public String cbTotNo;
public int ackCode;
public String date;
public int cusid;


MY AIM IS TO DISPLAY ALL IN ONE ROW???should use one query for all this form becouse i ahve three tables for this form>??
 
reply
    Bookmark Topic Watch Topic
  • New Topic