Re: Nested Tags Problem .... Urgent

2003-02-12 Thread James Mitchell
;Struts Users Mailing List" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Sunday, February 03, 2002 5:31 AM Subject: Re: Nested Tags Problem Urgent > Hi, > > If I am displaying nested tags in a jsp page it is working fine. > When I include" inner.jsp" pag

Re: Nested Tags Problem .... Urgent

2003-02-12 Thread ashokd
Hi, If I am displaying nested tags in a jsp page it is working fine. When I include" inner.jsp" page as in "parent.jsp" it is giving null pointer exception (I am not put any tag in inner.jsp page, but I kept in "parent.jsp"). When I kept in "inner.jsp" then it is working fine. I have t

Re: Nested Tags Problem .... Urgent

2003-02-12 Thread ashokd
Hi, If I am displaying nested tags in a jsp page it is working fine. When I include some other jsp page as it is giving null pointer exception (I am not put any tag). When I kept then it is working fine. I have three this type of frames. User can update any field in any . Why is checking f

Re: Nested Tags Problem .... Urgent

2003-02-11 Thread ashokd
ist'" <[EMAIL PROTECTED]> Sent: Wednesday, February 12, 2003 2:30 AM Subject: RE: Nested Tags Problem Urgent > not name .. property > > name: The name of the JSP bean containing the collection to be iterated (if > property is not specified), or the JSP bean whose p

RE: Nested Tags Problem .... Urgent

2003-02-11 Thread Chen, Gin
, whose getter returns the collection to be iterated. So it should be: -Original Message- From: ashokd [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 02, 2002 1:00 PM To: Struts Users Mailing List; Martin Gross Subject: Nested Tags Problem Urgent Hi, I am facing problem with

RE: Nested Tags Problem .... Urgent

2003-02-11 Thread Sri Sankaran
inal Message- From: ashokd [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 02, 2002 1:00 PM To: Struts Users Mailing List; Martin Gross Subject: Nested Tags Problem Urgent Hi, I am facing problem with Nested Tags. I have a method in ActionForm private ArrayList mFormList =

Nested Tags Problem .... Urgent

2003-02-11 Thread ashokd
> Hi, > > I am facing problem with Nested Tags. > > I have a method in ActionForm > private ArrayList mFormList = new ArrayList(); > > public Object[] getFormList() { > return mFormList.toArray(); > } > public ArrayList getMyFormList() { > return mFormList > } > > public setMyFormList(Arr

Nested Tags Problem .... Urgent

2003-02-11 Thread ashokd
Hi, I am facing problem with Nested Tags. I have a method in ActionForm private ArrayList mFormList = new ArrayList(); public Object[] getFormList() { return mFormList.toArray(); } public ArrayList getMyFormList() { return mFormList } public setMyFormList(ArrayList pFormList) { thi