What I have:
My DB class returns me following arraylist that I store in request, Pls
see the code below for the Structure
private ArrayList dummyList() {
ArrayList row = new ArrayList();
ArrayList data = new ArrayList();
for(int jk=0; jk<5;jk++){
row = new ArrayList();
row.add(new Integer(jk));
row.add("TEXT"+jk);
data.add(row);
}
return data;
}
Here I have an arrayList which itself has an arraylist with two elements
My Problem:
How can I iterate it to show the it in <html:options ??? What name I
will provide to iterate it to
Give Integer element as "value" field and String field as "shown value"
Pls provide some example
Thanks for your time..
raman
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]