Is there a property in class MyForm named "columns"? -Josh
-----Original Message----- From: David Chelimsky [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 6:52 AM To: Struts Users Mailing List Subject: Re: struts-el question Can you post the block using tags and the error? Matthew Van Horn wrote: > 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] > > > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

