RE: how to do this with JSTL

2005-07-25 Thread Karr, David
Hold on there. I think you've misunderstood the intent of integrating JSTL with Struts. The idea is not to replace all Struts tags with JSTL tags. That's not practical. In general, you should look at the functionality available in the JSTL. If there's something that the JSTL does, and there's

Problem with implementing tag handlers

2005-07-25 Thread Oded Arbel
I'm using tomcat 5.0.28 and I'm writing tags which are being reused by the TagHandlerPool. Now my problem is that I have an attribute setter setName(), for an optional attribute, and I want to know whether it was called for each invocation or not. I added a boolean field which gets set in setN

how to do this with JSTL

2005-07-25 Thread Marco Mistroni
hello all, i am trying to port my application from using struts tag towards using JSTL tags, but i got stuck in a point where i have to display a selectable list.. below was the original struts code.. Basically,thi swill lproduce a selectable list wher

Re: Inquiry about jsp:scriptlets and custom tags

2005-07-25 Thread Oded Arbel
On Monday, 25 בJuly 2005 15:30, Oded Arbel wrote: > Hi list. > > I'm having some issues with a jspx page I'm writing. > I wont to have a jsp:scriptlet in the page but wrap it in a custom > tag that do some stuff for the jsp:scriptlet. Specifically I want to > be able to decide whether the scriptlet

Inquiry about jsp:scriptlets and custom tags

2005-07-25 Thread Oded Arbel
Hi list. I'm having some issues with a jspx page I'm writing. I wont to have a jsp:scriptlet in the page but wrap it in a custom tag that do some stuff for the jsp:scriptlet. Specifically I want to be able to decide whether the scriptlet runs or not. I wrote a tag with BodyTagSupport and impl