How do I access the form bean properties from my jsp page?

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">

If it matters, columns is inherited from a BaseForm class.

Thanks for helping,
Matt

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to