I have a property called columns which is a String[] array. I'd like to do the equivalent of the following using tags.
<%
String[] myArray = myForm.getColumns();
for (int i=0; i < myArray.length; i = i+7) {
out.print("<TR>");
for (int j=0; j < 7; j++) {
out.print("<TD>"+ myArray[(i*7)+j] +"</TD>");
}
out.print("</TR>");
}
%>I tried this (saw it online) - but I get an error about accessing the columns property.
<c:forEach var="row" begin="0" items="${myForm.columns}" step="7">