Re: arraylist problem.

2005-07-04 Thread Vijay K Anand
Hi You can use size property to check the length of the Arraylist . [EMAIL PROTECTED] wrote: I have a condition where I have an arraylist(must) containing a bean and i have to display it in my jsp. I cannot use logic:iterate since if the arraylist does not contain the bean, the controls are

Re: arraylist problem.

2005-07-04 Thread Vijay K Anand
bean:size [EMAIL PROTECTED] wrote: I have a condition where I have an arraylist(must) containing a bean and i have to display it in my jsp. I cannot use logic:iterate since if the arraylist does not contain the bean, the controls are not displayed at all. (I have approx 40 controls to be

RE: arraylist problem.

2005-07-04 Thread Venkata Krishna V.
Hi Amit, You can use the logic notEmpty operator to check if the array list is null or not. Regards, Venkat -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, July 04, 2005 3:29 PM To: user@struts.apache.org Subject: arraylist problem. I have a