Bean property getting vanished from scope

2001-07-13 Thread Vaibhav Patil
Hello, I have a bean having array of objects. I am using that object for iterate tag. Its displaya the table correctly. But once I submit the tag and go to next page, I trying again to display the same thing, but it says no collection found. The scope I have given is session. Also I tried by

Iterate tag update

2001-07-09 Thread Vaibhav Patil
Hi, I am using logic:iterate tag as follows to print a table with text boxes. logic:iterate id=product name=productSearchForm property=productList tr td align=left bean:write name=product property=productNumber filter=true/ /td td

RE: Iterate tag update

2001-07-09 Thread Vaibhav Patil
- From: Vaibhav Patil [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 09, 2001 1:02 PM Subject: Iterate tag update Hi, I am using logic:iterate tag as follows to print a table with text boxes. logic:iterate id=product name=productSearchForm property=productList tr

RE: Iterate tag update

2001-07-09 Thread Vaibhav Patil
) { this.productList = productList ; } public Product getProductList(int index) { return (Product)productList[index]; } Remember have proper setter methods in the Product class like setQuantity int qty ) Suahs - Original Message - From: Vaibhav Patil [EMAIL PROTECTED] To: [EMAIL

Use of error in logic tag.

2001-07-06 Thread Vaibhav Patil
Hello, I can see the errors if I say html:erros/ But I want to use 'errors' bean in logic tag. I want to perform some operation on presence of error. How can I achieve this?? e.g. logic:present name=errors do something. /logic:present The above lines of

Multiple Select List

2001-06-28 Thread Vaibhav Patil
Hello, I am trying to put a multiple select in the page list using struts tag. I have defined a array attribute in the corresponding form bean. The size of the select list as well as the array is three. But I am getting an Array OutofBound exception as soon as I submit the page. Please