RE: struts-el question

2003-06-06 Thread Karr, David
: Struts Users Mailing List > Subject: Re: struts-el question > > > Is there a property in class MyForm named "columns"? > It's in the base class that MyForm extends. > > > > Can you post the block using tags and the error? > > I got i

Re: struts-el question

2003-06-05 Thread Matthew Van Horn
Is there a property in class MyForm named "columns"? It's in the base class that MyForm extends. Can you post the block using tags and the error? I got it working, although it is not what I would think of as elegant. here: I wish I

RE: struts-el question

2003-06-04 Thread Josh Rayls
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

Re: struts-el question

2003-06-04 Thread David Chelimsky
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(); fo

struts-el question

2003-06-04 Thread Matthew Van Horn
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(""); f