Hi I had a question about struts2 iterator tag.
Suppose I had an array of the form
and had getters and setters for this.
Now using iterator tag I need to display this
"hourList" is a list of strings under the Hour header of the form 00:00, 01:00 ....12:00
and the data for the rest is in the 2D array.
Can some one please help me with this.
Suppose I had an array of the form
Code:
private int [][]transactions = new int[11][this.size()];
Now using iterator tag I need to display this
Code:
Hour Mac1 Xact Mac2 Xact .... MacX Xact 00:00 5 3 .... 2 01:00 6 5 1
and the data for the rest is in the 2D array.
Can some one please help me with this.
Comment