Re: Nested Tags Problem .... Urgent

2003-02-12 Thread James Mitchell
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 page as iframe in parent.jsp it is giving null pointer exception (I am not put

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

RE: Is anyone using tomcat 4.1.18 with nested tags?

2003-02-11 Thread Jeff_Mychasiw
[EMAIL PROTECTED] To:Struts Users Mailing List [EMAIL PROTECTED] cc: Subject:RE: Is anyone using tomcat 4.1.18 with nested tags? Jeff: I have seen your several posts in the last day or so but haven't commiserated since you had indicated haven't read my posting ( http://www.mail

RE: Is anyone using tomcat 4.1.18 with nested tags?

2003-02-11 Thread David Morris
the name to null but I didn't look at reused tags a potential source for the problem. I also don't understand why the nested tags like NestedWrite don't implement a reset. It is likely that it is just fine but it also seems possible that there should be a reset to originalProperty and isNesting

RE: Nested Tags Problem .... Urgent

2003-02-11 Thread Sri Sankaran
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 = new ArrayList(); public Object[] getFormList

Tomcat 4.1.18 / nested tags

2003-02-11 Thread Becky Norum
I had problems with nested tags on Tomcat 4.1.18 as well, particularly trying to implement an adaptation of Arron Bates' tree recursion design (which is great, by the way!). I went back down to Tomcat 4.0.6 and things are working beautifully. Thanks to Sri and Arron, by the way, for many

Re: Tomcat 4.1.18 / nested tags

2003-02-11 Thread Jeff_Mychasiw
Thanks Becky. So I guess the answer to my original question: Is anyone using Tomcat 4.1.18 with Nested Tags is: No. We have done some inital tests With JBoss/TC 4.0.6 and things seem OK. Becky Norum [EMAIL PROTECTED] on 02/11/2003 01:49:25 PM Please respond to Struts Users

RE: Nested Tags Problem .... Urgent

2003-02-11 Thread Chen, Gin
, whose getter returns the collection to be iterated. So it should be: nested:iterate property=formList -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

Re: Nested Tags Problem .... Urgent

2003-02-11 Thread ashokd
: 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 property getter returns the collection to be iterated (if property

Is anyone using tomcat 4.1.18 with nested tags?

2003-02-11 Thread Jeff_Mychasiw
4.1.18 without JBoss. Out Struts app is a nightly build just after 1.1b2. it uses nested tags throughout and works well on TC 4.0.4/4.0.6 I get two types of problems when hitting my pages. 1 - The nested tags reporting no access to a property on a bean that it should not be looking at. 2 - once

Re: Is anyone using tomcat 4.1.18 with nested tags?

2003-02-11 Thread David Graham
This is a known issue with the nested tags and newer Tomcat versions. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16916 David From: [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Is anyone using tomcat 4.1.18 with nested tags

RE: Is anyone using tomcat 4.1.18 with nested tags?

2003-02-11 Thread Sri Sankaran
4.1.18. Please let me know if I can help Sri -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 11, 2003 10:29 AM To: [EMAIL PROTECTED] Subject: Is anyone using tomcat 4.1.18 with nested tags? We have been building an application on TC

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

[Nested Tags] Problem in 1.1b3 ?

2003-02-10 Thread Jeff_Mychasiw
I have read a couple of posts regarding a situation where the nested tags are calling properties on the wrong bean. We are using a nightly build just after 1.1b2 and all seem to work fine. Once we try b3 then we get the odd problem. I have been using nested tags for all my pages without much

Re: [Nested Tags] Problem in 1.1b3 ?

2003-02-10 Thread Jeff_Mychasiw
need a newer struts, due to some class loading issue(A Digester issue? ). When we go to newer struts , nested tags act funny... Rollback to Tomcat 4.0.6 And so it goes /frustrating note - To unsubscribe, e-mail

Question about nested tags.

2003-01-22 Thread ROSSEL Olivier
it is possible to flush from inside a custom tag only if this tag extends IteratedTags. I presume that the implementation of nested:iterate I use (Struts-1.1b2) does not extend IteratedTags. Is there a newer version of nested tags that would handle that problem? ---cut here--- This e-mail is intended

RE: Question about nested tags.

2003-01-22 Thread ROSSEL Olivier
of nested tags that would handle that problem? It seems that nested:iterate extends logic:iterate that extends BodyTag. So the problem seems to be not in the nested taglib, but in the logic taglib. What's the current status of the logic taglib? This e-mail is intended only for the above addressee

Re: Question about nested tags.

2003-01-22 Thread Nicolas De Loof
It seems that this limitation has been changed in JSP 1.2, and now it is possible to flush from inside a custom tag only if this tag extends IteratedTags. I presume that the implementation of nested:iterate I use (Struts-1.1b2) does not extend IteratedTags. You would like some

RE: Question about nested tags.

2003-01-22 Thread ROSSEL Olivier
It seems that this limitation has been changed in JSP 1.2, and now it is possible to flush from inside a custom tag only if this tag extends IteratedTags. I presume that the implementation of nested:iterate I use (Struts-1.1b2) does not extend IteratedTags. You would like

Re: Question about nested tags.

2003-01-22 Thread Nicolas De Loof
In fact, logic:iterate extends BodyTags and implements IterateTag. So for a newbie like me, everything looks ok. Of course, I misunderstand all the problem. That's why I ask for additionnal informations. tiles:insert is using JSP include mecanism. In JSP 1.1, include MUST use the flush

Re: Question about nested tags.

2003-01-22 Thread Nicolas De Loof
Reading tiles tld, I've seen they're is a flush attribute, that can be optionaly set to false, so that no flush is done. On a JSP 1.2 compliant container this should allow you to use tiles:insert into your nested:iterate tag. It should be great for tiles not to flush if a JSP 1.2 container is

Fwd: Nested tags configuration... again

2003-01-15 Thread Mark Lowe
Sorry to repost but any ideas? Inizio del messaggio inoltrato: Da: Mark Lowe [EMAIL PROTECTED] Data: Mar 14 gen 2003 17:38:27 Europe/Rome A: Struts List [EMAIL PROTECTED] Oggetto: Nested tags configuration Rispondere-A: Struts Users Mailing List [EMAIL PROTECTED] anyone had any problems

Nested tags configuration

2003-01-14 Thread Mark Lowe
anyone had any problems getting netsted tags running? i've been working through the monkey - banna example and i keep getting this: org.apache.jasper.compiler.ParseException: End of content reached while more parsing required: tag nesting error? at

Problems with nested tags

2003-01-09 Thread Jordan Thomas
Hi, I am trying to use the nested tags within an iterate loop and I am getting the following output: input type=hidden name=org.apache.struts.taglib.html.BEAN[1].permissionLanguageData[1].langua geId value=en What I really need is: input type=hidden name=languageId[1] value=en I am not sure

RE: Problems with nested tags

2003-01-09 Thread Sri Sankaran
: Jordan Thomas [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 11:06 AM To: Struts-User Subject: Problems with nested tags Hi, I am trying to use the nested tags within an iterate loop and I am getting the following output: input type=hidden name

RE: Problems with nested tags

2003-01-09 Thread Jordan Thomas
Message- From: Sri Sankaran [mailto:[EMAIL PROTECTED]] Sent: Thursday, 9 January 2003 5:24 PM To: Struts Users Mailing List Subject: RE: Problems with nested tags Your nested:root isn't what you expect it to since you are closing it immediately. Look closely, you have nested:root name

RE: Problems with nested tags

2003-01-09 Thread David Morris
Jordan, I had a similar problem with the beta3 version of the nested tags. I posted a bug in bugzilla along with a patch that fixed this issue for me. What I found was that some code in the NestedPropertyHelper was picking up the default nested name value. If you are using Beta 3, you might

RE: Problems with nested tags

2003-01-09 Thread Jordan Thomas
Thanks David, Looks like that could be the problem but unfortunately your patch hasn't been committed. cheers Jordan -Original Message- From: David Morris [mailto:[EMAIL PROTECTED]] Sent: Thursday, 9 January 2003 5:54 PM To: [EMAIL PROTECTED] Subject: RE: Problems with nested tags

Re: nested tags

2003-01-08 Thread Mark Lowe
Something along these lines might help html:select property=myname html:options collection=myarray property=value / /html:select if you've a map you can use html:select property=myname html:options collection=myhash property=key labelProperty=value / /html:select cheers mark

RE: nested tags

2003-01-08 Thread Brown, Melonie S. - Contractor
Is there a way to get back the key/value pair that was selected (without using hidden fields)? Melonie Brown -Original Message- From: Mark Lowe [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 3:57 AM To: Struts Users Mailing List Subject: Re: nested tags Something along

RE: nested tags

2003-01-08 Thread LUCERO,DENNIS (HP-Boise,ex1)
just the ( select property = balh ) select property properties. Hope that was helpful. -Original Message- From: Brown, Melonie S. - Contractor [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 5:50 AM To: [EMAIL PROTECTED] Subject: RE: nested tags Is there a way to get back

nested tags

2003-01-07 Thread LUCERO,DENNIS (HP-Boise,ex1)
I am trying something like this: html:select property = whatever logic:iterate id = item name = someArray html:option value = thisIsMyProblem %=item% /html:option /logic:iterate /htmlselect I need the vaule of item to go where thisIsMyProblem is similar to the use of

RE: [Nested Tags] Frustration..Should this work?

2002-11-28 Thread Arron Bates
A really subtle problem. Remind me to make this advice available some place else when I'm done (like a mail archive?)... :) Trap one: It sounds like the bean reference is a collection itself. A little more background clarity... The nested tags never actually define references, they simply

RE: [Nested Tags] Frustration..Should this work? - Future?

2002-11-28 Thread Jeff_Mychasiw
Thank you, that makes things clearer. Arron Bates wrote: The nested tags have an esoteric following (that I know of), no-one on this list goes out the their way to recommend them outside of the old list in lists problem, whatever (I'm curious to see if they even get a mention in any

RE: [Nested Tags] Frustration..Should this work?

2002-11-27 Thread Sri Sankaran
I wonder if this would work nested:root name=pageList nested:iterate property=this/ %-- etc --% /nested:iterate /nested:root Sri -Original Message- From: Sri Sankaran Sent: Wednesday, November 27, 2002 9:13 AM To: Struts Users Mailing List Subject: RE: [Nested Tags] Frustration

RE: [Nested Tags] Frustration..Should this work?

2002-11-27 Thread Jeff_Mychasiw
] To:Struts Users Mailing List [EMAIL PROTECTED] cc: Subject:RE: [Nested Tags] Frustration..Should this work? I wonder if this would work nested:root name=pageList nested:iterate property=this/ %-- etc --% /nested:iterate /nested:root Sri -Original Message- From: Sri

RE: [Nested Tags] Frustration..Should this work?

2002-11-27 Thread Sri Sankaran
PROTECTED]] Sent: Wednesday, November 27, 2002 9:49 AM To: Struts Users Mailing List Subject: RE: [Nested Tags] Frustration..Should this work? Thanks for the reply: It is inside a nested form but I am getting these values by setting to page scope. The nested iterate has no problem reading

RE: [Nested Tags] Frustration..Should this work?

2002-11-27 Thread Jeff_Mychasiw
bean specified by the name attribute. I understand that the name is not needed by the nested tags (thats why I use them so much :-) ), but the nested docs simply point to the docs for the standard logic tags. The nested:iterate seems to work as expected, but the nested equal and write either do

RE: [Nested Tags] Frustration..Should this work?

2002-11-27 Thread Sri Sankaran
Mailing List Subject: RE: [Nested Tags] Frustration..Should this work? Thank you for reminding me of that link. I tried ./value and this/value without success. Even though I use the nested:form as the root..for this iterate tag I want to tell it to look to an object in page scope instead

RE: [Nested Tags] Frustration..Should this work?

2002-11-27 Thread Jeff_Mychasiw
[EMAIL PROTECTED] To:Struts Users Mailing List [EMAIL PROTECTED] cc: Subject:RE: [Nested Tags] Frustration..Should this work? I don't have an answer to your question, should this code work -- since I've never used the name attribute in any nested tag other than nested:root. Sri

[Nested Tags] Frustration..Should this work?

2002-11-26 Thread Jeff_Mychasiw
Greetings: All I am trying to do is display a a selected item form a list. - pageList is standard java.util.List of LabelValueBeans set in page scope. - cc is a String pulled out of the form bean and set to page scope. Using the nested tags my first approach was this: nested:iterate name

struts-1.1-b2 nested tags don't work with tag handler pooling(tomcat-4.1.12)

2002-11-26 Thread Lenny Marks
The struts-nested tags from struts-1.1-b2 don't work when tag handler pooling is used. Tomcat 4.1.12 has pooling turned on by default. This can be demonstrated by deploying the 'MonkeyTree war (milestone two)' from the Tree Structures tutorial by Arron Bates into tomcat-4.1.12. Tutorial

Placing jsp tags within nested tags not working.

2002-11-25 Thread david . fields
I'm having problems trying to nest code within a nested tag. nested:text property=actionCode maxlength=1 size=1 styleClass=maintWidth1 onchange=makeEditDirty('hideOnEdit','showOnEdit','%=chkBxId%'); onkeyup=return autoTab(this, 1, event); / This doesn't work. The output looks like

RE: Placing jsp tags within nested tags not working.

2002-11-25 Thread Karr, David
-el library. It is quite straightforward, I just haven't done it yet. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 10:01 AM To: [EMAIL PROTECTED] Subject: Placing jsp tags within nested tags not working. I'm having problems

Struts Nested Tags

2002-11-18 Thread edgar
I am upgrading from Struts 1.0.2 to 1.1b2. I am getting null pointer exceptions in the nested:iterate tag java.lang.NullPointerException at java.util.Hashtable.get(Hashtable.java:320) at com.caucho.server.http.Request.getAttribute(Request.java:1459) at

RE: Struts Nested Tags

2002-11-18 Thread edgar
' Subject: Struts Nested Tags I am upgrading from Struts 1.0.2 to 1.1b2. I am getting null pointer exceptions in the nested:iterate tag java.lang.NullPointerException at java.util.Hashtable.get(Hashtable.java:320) at com.caucho.server.http.Request.getAttribute(Request.java:1459

bean:define problem in nested tags

2002-11-11 Thread Vinod Kotnala, Noida
Hi All, I want to define 2 or more variables using bean:define tag The following code works ok.. nested:iterate property=nameList bean:define id=name bean:write name=nameList property=name/ /bean:define /nested:iterate But when I try to

RE: bean:define problem in nested tags

2002-11-11 Thread edgar
Users Mailing List' Subject: bean:define problem in nested tags Hi All, I want to define 2 or more variables using bean:define tag The following code works ok.. nested:iterate property=nameList bean:define id=name bean:write name=nameList property=name

RE: bean:define problem in nested tags

2002-11-11 Thread Vinod Kotnala, Noida
I consider this as a bug ? Vinod -Original Message- From: edgar [mailto:edgar;blue-moose.net] Sent: Monday, November 11, 2002 8:33 PM To: 'Struts Users Mailing List' Subject: RE: bean:define problem in nested tags Are you using 1.1b2? If not, try updating. If that doesn't work

RE: bean:define problem in nested tags

2002-11-11 Thread edgar
: bean:define problem in nested tags Ah.. What I find is that if any of the property has a blank value, the the exception occurs !! i.e if bean:write name=nameList property=name/ prints nothing .. then the exception : Define tag can contain only one of name attribute, value attribute, or body

RE: bean:define problem in nested tags

2002-11-11 Thread Karr, David
-Original Message- From: Vinod Kotnala, Noida [mailto:vkotnala;noida.hcltech.com] Sent: Monday, November 11, 2002 7:10 AM Ah.. What I find is that if any of the property has a blank value, the the exception occurs !! i.e if bean:write name=nameList property=name/

RE: Nested Tags situation any light would be appreciated

2002-11-04 Thread Sri Sankaran
04, 2002 10:20 AM To: Struts List Subject: Nested Tags situation any light would be appreciated Sorry to repeat this question... possibly some fresh Monday blood could help... I'm stumped here what I'm screwing up and would appreciate any help. I'm playing around using nested tags

Re[2]: Nested Tags situation any light would be appreciated

2002-11-04 Thread Rick Reumann
-Original Message- SS From: Rick Reumann [mailto:maillist;reumann.net] SS Sent: Monday, November 04, 2002 10:20 AM SS To: Struts List SS Subject: Nested Tags situation any light would be appreciated SS Sorry to repeat this question... possibly some fresh Monday blood could help... SS I'm

RE: Re[2]: Nested Tags situation any light would be appreciated

2002-11-04 Thread Sri Sankaran
: Rick Reumann [mailto:maillist;reumann.net] Sent: Monday, November 04, 2002 2:09 PM To: Struts Users Mailing List Cc: Sri Sankaran Subject: Re[2]: Nested Tags situation any light would be appreciated On Monday, November 4, 2002, 1:43:35 PM, Sri wrote: SS That brings us to what happens when

Re[4]: Nested Tags situation any light would be appreciated

2002-11-04 Thread Rick Reumann
On Monday, November 4, 2002, 2:33:26 PM, Sri wrote: SS Rick: I think the problem is in how you are initializing your SS objects. In particular the problem is where you call the SS setCarList() method. Both Persons are getting a reference to the SS same list. In other words you have only one

RE: Re[4]: Nested Tags situation any light would be appreciated

2002-11-04 Thread Sri Sankaran
your business needs better so Sri -Original Message- From: Rick Reumann [mailto:maillist;reumann.net] Sent: Monday, November 04, 2002 3:00 PM To: Sri Sankaran Cc: Struts-User Subject: Re[4]: Nested Tags situation any light would be appreciated On Monday, November 4, 2002, 2:33:26

Re[6]: Nested Tags situation any light would be appreciated

2002-11-04 Thread Rick Reumann
On Monday, November 4, 2002, 3:16:31 PM, Sri wrote: SS Without going into why would you want to set them to false I'd SS urge you to use your action. This way, the logic isn't coupled SS with the bean but with the action that presents it. SS I would give serious thought into whether you

[Nested Tags] Is styleId available for nested:hidden?

2002-11-04 Thread Jeff_Mychasiw
/' id='%= onAccountAmtCtrl %' ...but I started using the nested tags because it cleaned up my code. Am I missing something? Any help would be appreciated.. -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:struts-user

[Nested Tags] Nested vs logic tags..

2002-10-28 Thread Jeff_Mychasiw
Greetings: I am almost exclusively using nested tags. Every now and then I run into a problem and have to switch over the corresponding logic or bean version. Can anyony tell me if this is a bug? I am using 1.1b2 I tried this with nested:equal but got a NullPointerException (listed below

RE: [Nested Tags] Nested vs logic tags..

2002-10-28 Thread Taylor, Jason
Just a hunch-- have you tried specifying a 'name' for the nested:iterate tag? -Original Message- From: [EMAIL PROTECTED] [mailto:Jeff_Mychasiw;nlgroup.ca] Sent: Monday, October 28, 2002 8:03 AM To: [EMAIL PROTECTED] Subject: [Nested Tags] Nested vs logic tags.. Greetings: I am

RE: [Nested Tags] Nested vs logic tags..

2002-10-28 Thread Jeff_Mychasiw
: Subject:RE: [Nested Tags] Nested vs logic tags.. Just a hunch-- have you tried specifying a 'name' for the nested:iterate tag? -Original Message- From: [EMAIL PROTECTED] [mailto:Jeff_Mychasiw;nlgroup.ca] Sent: Monday, October 28, 2002 8:03 AM To: [EMAIL PROTECTED] Subject: [Nested Tags

RE: [Nested Tags] Nested vs logic tags..

2002-10-28 Thread Arron Bates
Just a hunch-- have you tried specifying a 'name' for the nested:iterate tag? The nested tags don't need it, and if it's provided they will ignore it. Why?... because all the tags are working off the same bean structure, and this is defined for us by the form tag. The nested tags will fetch

what for are nested tags ?

2002-10-28 Thread Marcus Biel
? thx, marcus -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:struts-user-help;jakarta.apache.org

RE: what for are nested tags ?

2002-10-28 Thread James Mitchell
(1879-1955) -Original Message- From: Marcus Biel [mailto:Marcus.Biel;bmw.de] Sent: Tuesday, October 29, 2002 2:36 AM To: [EMAIL PROTECTED] Subject: what for are nested tags ? ? thx, marcus -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org

Re: what for are nested tags ?

2002-10-28 Thread Marcus Biel
:-) Thx! Simple, but highly efective! :-D marcus [EMAIL PROTECTED] schrieb: http://www.google.com/search?hl=enie=UTF-8oe=UTF-8q=what+for+are+nested+t agsbtnG=Google+Search James Mitchell Software Engineer/Struts Evangelist http://www.open-tools.org -- To unsubscribe, e-mail:

[Nested Tags] Please help to confirm a problem..

2002-10-16 Thread Jeff_Mychasiw
I am running on Struts 1.1b2 and Tomcat 4.04 I have provided a self contained JSP page that defines two objects and creates a list of lists and iterates though them three ways. first by standard java, then logic:iterate tags and finally with nested tags. My preference would be to use the nested

RE:[NESTED TAGS] Questions regarding nested:iterate and indexid....

2002-10-08 Thread Jeff_Mychasiw
Just to close this topic, the problem I described seemed to go away when I upgraded to 1.1b2. I guess it was about time anyway... :o) -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: [NESTED TAGS] Questions regarding nested:iterate and indexid....

2002-10-08 Thread Eddie Bush
Go for the nightly ... if you are going that far, go for the nightly (if you can at all). [EMAIL PROTECTED] wrote: Just to close this topic, the problem I described seemed to go away when I upgraded to 1.1b2. I guess it was about time anyway... :o) -- Eddie Bush -- To unsubscribe,

Re: [NESTED TAGS] Questions regarding nested:iterate and indexid....

2002-10-07 Thread Jeff_Mychasiw
] cc: Subject:Re: [NESTED TAGS] Questions regarding nested:iterate and indexid Jeff == Jeff Mychasiw [EMAIL PROTECTED] writes: Jeff I am using 1.1b1 Jeff Summary: I cannot make use of the indexId reference in side a java method, unless I specify an id=XX attribute

[NESTED TAGS] Questions regarding nested:iterate and indexid....

2002-10-06 Thread Jeff_Mychasiw
I am using 1.1b1 Summary: I cannot make use of the indexId reference in side a java method, unless I specify an id=XX attribute. The funny thing is that the id attribute can be named anything. I have been coding my list in this manner for some time without problems. I am using the

Re: [NESTED TAGS] Questions regarding nested:iterate and indexid....

2002-10-06 Thread David M. Karr
Jeff == Jeff Mychasiw [EMAIL PROTECTED] writes: Jeff I am using 1.1b1 Jeff Summary: I cannot make use of the indexId reference in side a java method, unless I specify an id=XX attribute. Jeff The funny thing is that the id attribute can be named anything. It may not be relevant,

nested tags problem and struts performance

2002-09-24 Thread Nicolas Gréhalle
Hi, I've 2 questions : - I'm using Struts-1.1b2 with Tomcat 4.1.40. With old version (Struts-1.1b1 and Tomcat 4.0.x), I had no problem, but now, nested tags don't manage anymore : Example : page1.jsp: ... nested:iterate property=childCollection nested:write property=element

RE: nested tags - version problem

2002-09-18 Thread Lister, Tom (ANTS)
PROTECTED] -Original Message- From: Arron Bates [mailto:[EMAIL PROTECTED]] Sent: 17 September 2002 15:31 To: Struts Users Mailing List Subject: Re: nested tags - version problem Do you mean the nested_tags_10.jar from my site?... I just checked the tld, there's no mention of the EmptyTag

nested tags - version problem

2002-09-17 Thread Lister, Tom (ANTS)
we are using the nested tags library that is compatable with struts 1.0 but it depends on but it still contains references to the 'EmptyTag', which I think is 1.1 this has only become apparent when moving from development using tomcat to deployment on web-logic has anyone got this problem

Re: nested tags - version problem

2002-09-17 Thread Arron Bates
. Arron. On Tue, 2002-09-17 at 20:31, Lister, Tom (ANTS) wrote: we are using the nested tags library that is compatable with struts 1.0 but it depends on but it still contains references to the 'EmptyTag', which I think is 1.1 this has only become apparent when moving from development using

RE: Nested tags and performance (after compiling)

2002-09-03 Thread Lister, Tom (ANTS)
Message- From: Lister, Tom (ANTS) [mailto:[EMAIL PROTECTED]] Sent: 02 September 2002 09:05 To: 'Struts Users Mailing List' Subject: Nested tags and performance (after compiling) Hi This isn't a compile problem. The pages performance are consistently slow even after the first access. I've heard

Nested tags and performance (after compiling)

2002-09-02 Thread Lister, Tom (ANTS)
in to the detail part if the master detail display using nested tags and the performance is erratic ( on a machine we have control over) hence we suspect it's the garbage collection removing objects created by the tags. :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message- From

Nested tags and jsp:include

2002-08-28 Thread Jon.Ridgway
Hi All, I havea problem with the nested tags. If I use a jsp:include on a page and the included jsp tires to use the nested tags I get a NullPointerException thrown by one of the Nested classes. I guess that something is being stored in the page context by the nested tags and that the included

Re: Nested tags and jsp:include

2002-08-28 Thread Spunky Monkey
pop an empty nested:root tag around all the nested tags in the included page. Nested tags always need their root tag. In this instance, the empty root tag will pick up where the other page left off. First page, eg... nested:form name=myFormBean nested:iterate property=myList jsp:include

RE: Nested tags and jsp:include

2002-08-28 Thread Lister, Tom (ANTS)
- From: Spunky Monkey [mailto:[EMAIL PROTECTED]] Sent: 28 August 2002 11:05 To: Struts Users Mailing List Subject: Re: Nested tags and jsp:include pop an empty nested:root tag around all the nested tags in the included page. Nested tags always need their root tag. In this instance, the empty root tag

RE: Nested tags performance

2002-08-28 Thread Lister, Tom (ANTS)
I have got a page working with nested tags and the functionality is brilliant for master/detail pages However the performance is abysmal, to the point where we mayhave to abandon it completely. The problem appears to be during the page compile/display phase. it is a bit erratic as to where

RE: Nested tags performance

2002-08-28 Thread Donald Ball
On 8/28/2002 at 1:58 PM Lister, Tom (ANTS) wrote: I have got a page working with nested tags and the functionality is brilliant for master/detail pages However the performance is abysmal, to the point where we mayhave to abandon it completely. The problem appears to be during the page compile

Re: Nested tags performance

2002-08-28 Thread Michael Lee
:23 AM Subject: RE: Nested tags performance On 8/28/2002 at 1:58 PM Lister, Tom (ANTS) wrote: I have got a page working with nested tags and the functionality is brilliant for master/detail pages However the performance is abysmal, to the point where we mayhave to abandon it completely

Nested tags: why not default

2002-08-22 Thread Robert Taylor
Arron, thanks for the nested tag library, cool stuff! I was wondering why the nested logic wouldn't be the default if a tag's name property was not specified; or at the very least, why not just add a nested=true attribute if you wanted to nested functionality to any of the existing tags and the

Re: nested tags --- caught me again--- urgent help needed.

2002-08-02 Thread Sanjay Choudhary
() public void setLast_name(String newVal) ...in your personVO object. From this uml-ish diagram (last_name:String) it's hard to make this out. Arron. Hi friends, I am kind of in a loop with nested tags. In my formbean I have attribute authority: AuthorityVo

Re: getting nested tags to work with DynaActionForm???

2002-07-19 Thread Arron Bates
, Craig R. McClanahan wrote: On Tue, 16 Jul 2002, Rick Reumann wrote: Date: Tue, 16 Jul 2002 22:04:54 -0400 From: Rick Reumann [EMAIL PROTECTED] To: Craig R. McClanahan [EMAIL PROTECTED] Cc: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re[2]: getting nested tags to work

Re: getting nested tags to work with DynaActionForm???

2002-07-18 Thread Adam Hardy
List [EMAIL PROTECTED] Subject: Re[2]: getting nested tags to work with DynaActionForm??? On Tuesday, July 16, 2002, 9:04:04 PM, Craig R. McClanahan wrote: CRM Setting stuff like this up in the reset() method is the standard approach. CRM Arrays have to exist already for either standard JavaBean

Re: getting nested tags to work with DynaActionForm???

2002-07-18 Thread Adam Hardy
I am now using nested tags everywhere and not programming my action forms with getter and setter methods for anything except one or two properties, and the nested beans of course. Is there any reason to regard this as bad practice? I also write my value beans with two properties for every

Re: Re[2]: getting nested tags to work with DynaActionForm???

2002-07-17 Thread Arron Bates
: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re[2]: getting nested tags to work with DynaActionForm??? On Tuesday, July 16, 2002, 9:04:04 PM, Craig R. McClanahan wrote: CRM Setting stuff like this up in the reset() method is the standard approach. CRM Arrays have to exist

Re[3]: getting nested tags to work with DynaActionForm???

2002-07-17 Thread Rick Reumann
Craig and company, I'll comment some more below but I want to first explain what needs to be set up and handled. I have an ArrayList of beans. Each bean in this ArrayList also contains an ArrayList of String object. On my JSP I'm using the nested tag (new to using it- bannana stuff very helpful

Re[4]: getting nested tags to work with DynaActionForm???

2002-07-17 Thread Rick Reumann
Actually I just realized part of the problem below is/was is that even using the standard ActionForm I can't seem to get the nested ArrayList stuff to take upon submission unless I give the form session scope. I'm sure this question has been answered before so I'll look in the archives (

Re: getting nested tags to work with DynaActionForm???

2002-07-17 Thread @Basebeans.com
Subject: Re: getting nested tags to work with DynaActionForm??? From: Serge Shikov [EMAIL PROTECTED] === Craig R. McClanahan wrote: For DynaActionForm instances, the default initialization of all non-primitives in null. That's why you still need to initialize in reset(), or use the new

Re: getting nested tags to work with DynaActionForm???

2002-07-17 Thread Craig R. McClanahan
On Wed, 17 Jul 2002, Struts Newsgroup wrote: Date: Wed, 17 Jul 2002 10:55:01 -0700 From: Struts Newsgroup [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: getting nested tags to work with DynaActionForm??? Subject: Re: getting

Struts event sequence (WAS: getting nested tags to work with DynaActionForm???)

2002-07-17 Thread Roman Fail
Application Developer POS Portal, Inc. -Original Message- From: Dan Cancro [mailto:[EMAIL PROTECTED]] Sent: Tue 7/16/2002 5:00 PM To: 'Struts Users Mailing List' Cc: Subject: RE: getting nested tags to work with DynaActionForm

Re[2]: getting nested tags to work with DynaActionForm???

2002-07-17 Thread Roman Fail
- From: Arron Bates [mailto:[EMAIL PROTECTED]] Sent: Wed 7/17/2002 5:28 AM To: Struts Users Mailing List Cc: Subject: Re: Re[2]: getting nested tags to work with DynaActionForm

Re[2]: getting nested tags to work with DynaActionForm???

2002-07-17 Thread Craig R. McClanahan
On Wed, 17 Jul 2002, Roman Fail wrote: Date: Wed, 17 Jul 2002 15:23:23 -0700 From: Roman Fail [EMAIL PROTECTED] To: [EMAIL PROTECTED], [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re[2]: getting nested tags to work with DynaActionForm??? What do you think of Arron's idea, Craig

RE: Re[2]: getting nested tags to work with DynaActionForm???

2002-07-17 Thread Roman Fail
]; [EMAIL PROTECTED] Subject: Re[2]: getting nested tags to work with DynaActionForm??? Date: Wed, 17 Jul 2002 15:23:23 -0700 From: Roman Fail [EMAIL PROTECTED] To: [EMAIL PROTECTED], [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject

RE: Re[2]: getting nested tags to work with DynaActionForm???

2002-07-17 Thread Craig R. McClanahan
On Wed, 17 Jul 2002, Roman Fail wrote: Date: Wed, 17 Jul 2002 16:17:49 -0700 From: Roman Fail [EMAIL PROTECTED] To: Craig R. McClanahan [EMAIL PROTECTED] Cc: [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: RE: Re[2]: getting nested tags to work with DynaActionForm??? Counter-intuitive

Re[4]: getting nested tags to work with DynaActionForm???

2002-07-17 Thread Rick Reumann
On Wednesday, July 17, 2002, 7:39:23 PM, Craig wrote: Agreed, that does walk into the realm of Big Brother code. I guess it's just going to be a rough spot for DynaNewbies. CRM Not any rougher than it is for people trying to understand standard CRM ActionForms :-) Correct me if I'm

Re: Struts event sequence (WAS: getting nested tags to work withDynaActionForm???)

2002-07-17 Thread Eddie Bush
Hey - I wish I'd had that when I started with Struts! I don't personally agree with your philosophy on setting autoCommit to true, but I liked the page other than that :-) clickAdd Bookmark/click I just feel having autoCommits off is a good thing. That way you have explicit control over the

<    1   2   3   >