Link Tag Parameters

2001-08-17 Thread MacKellar, Kimberly
I have a bean that is being stored in the Session which contains a caseId and a HashMap of related items. In my JSP page I print the caseId and then iterate over the HashMap and print out its key and value Object. During this iteration I need to be able to print out a link tag that will go to an

link tag parameters problem

2001-02-07 Thread Deadman, Hal
I have a two Struts link tags on a page. The first one sets a parameter but the parameter shows up on both links instead of just the first one.  I am using Weblogic 6.0. Should the param* attributes be getting reset in the release() method of the link tag? When is the release method on a tag

RE: link tag parameters problem

2001-02-07 Thread Deadman, Hal
-From: Deadman, Hal Sent: Wednesday, February 07, 2001 7:16 PMTo: Struts ListSubject: link tag parameters problem I have a two Struts link tags on a page. The first one sets a parameter but the parameter shows up on both links instead of just the first one.  I am using Weblogic 6.0. S

Re: link tag parameters problem

2001-02-07 Thread Craig R. McClanahan
"Deadman, Hal" wrote: > I added these three lines to the LinkTag.java release() method and > the parameter doesn't show up on the second link anymore. Does this > problem occur on other App servers?paramId = null; > paramScope= null; > paramProperty = null; Good catch.