RE: JSTL tag forEach context question

2002-03-15 Thread Eric . Lewis
g, 15. März 2002 16:53 To: Tag Libraries Users List Subject: RE: JSTL tag forEach context question Eric. Good points; some comments below. On Fri, 15 Mar 2002 [EMAIL PROTECTED] wrote: > I see JSTL as a kind of "read-only" interface to your data, > effectively implementing the

Re: JSTL tag forEach context question

2002-03-15 Thread Shawn Bayern
On Fri, 15 Mar 2002, RAYMOND Romain wrote: > and is there a solution without rt (which seems dedicated to " hard > programming ") about passing parameter within a foreach tag ? No. Calling methods directly is considered "hard programming" for now. The question is - should it be in the future?

Re: JSTL tag forEach context question

2002-03-15 Thread RAYMOND Romain
and is there a solution without rt (which seems dedicated to " hard programming ") about passing parameter within a foreach tag ? -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: JSTL tag forEach context question

2002-03-15 Thread Shawn Bayern
Eric. Good points; some comments below. On Fri, 15 Mar 2002 [EMAIL PROTECTED] wrote: > I see JSTL as a kind of "read-only" interface to your data, > effectively implementing the View in the MVC model. Frankly, I > wouldn't want our web designers to be able to call methods other than > getters.

RE: JSTL tag forEach context question

2002-03-15 Thread Eric . Lewis
15. März 2002 16:30 To: 'Tag Libraries Users List' Subject: RE: JSTL tag forEach context question I think method invocation is a necessary idea in the current versions of JSTL that I've seen. There are still alot of things that seems unnecessarily complex in using soem of the t

Re: JSTL tag forEach context question

2002-03-15 Thread Shawn Bayern
On Fri, 15 Mar 2002, John Baker wrote: > > The 'rt' versions of each tag library support rtexprvalues instead of the > > expression language. We included them primarily as a way of facilitating > > integration of JSTL into older applications and methodologies. The 'rt' > > versions won't be nec

RE: JSTL tag forEach context question

2002-03-15 Thread Chen, Gin
omain Cc: Tag Libraries Users List Subject: Re: JSTL tag forEach context question On Fri, 15 Mar 2002, RAYMOND Romain wrote: > I'd like to pass a parameter to method called within the forEach tag. > This method have to initialize the collection used by forEach. And > this par

Re: JSTL tag forEach context question

2002-03-15 Thread RAYMOND Romain
Stupid question ...;) John Baker a écrit : > > On Friday 15 Mar 2002 15H:17 pm, you wrote: > > On Fri, 15 Mar 2002, John Baker wrote: > > > Stupid question. What is the difference between c.tld and c-rt.tld ? Or > > > in general, what does -rt dictate? > > > > The 'rt' versions of each tag lib

Re: JSTL tag forEach context question

2002-03-15 Thread Shawn Bayern
On Fri, 15 Mar 2002, RAYMOND Romain wrote: > I'd like to pass a parameter to method called within the forEach tag. > This method have to initialize the collection used by forEach. And > this parameter is retrieved throught a request.getParameter()... > > We can do it using JSTL c-rt.tld but we w

Re: JSTL tag forEach context question

2002-03-15 Thread John Baker
On Friday 15 Mar 2002 15H:17 pm, you wrote: > On Fri, 15 Mar 2002, John Baker wrote: > > Stupid question. What is the difference between c.tld and c-rt.tld ? Or > > in general, what does -rt dictate? > > The 'rt' versions of each tag library support rtexprvalues instead of the > expression langua

Re: JSTL tag forEach context question

2002-03-15 Thread Shawn Bayern
On Fri, 15 Mar 2002, John Baker wrote: > Stupid question. What is the difference between c.tld and c-rt.tld ? Or in > general, what does -rt dictate? The 'rt' versions of each tag library support rtexprvalues instead of the expression language. We included them primarily as a way of facilitat

Re: JSTL tag forEach context question

2002-03-15 Thread RAYMOND Romain
tHanks for your analyse but so, why and how this code using c-rt.tld don't work with c.tld taglib ? <%@taglib uri="http://java.sun.com/jstl/ea/core"; prefix="c"%> <%@taglib uri="http://java.sun.com/jstl/ea/core-rt"; prefix="c-rt"%> ... ... ... So what is the way to pass parameter meth

Re: JSTL tag forEach context question

2002-03-15 Thread John Baker
Stupid question. What is the difference between c.tld and c-rt.tld ? Or in general, what does -rt dictate? On Friday 15 Mar 2002 11H:02 am, you wrote: > hello, > thanks for your previous answer. > > I'd like to pass a parameter to method called within the forEach tag. > This method have > to

Re: JSTL tag forEach context question

2002-03-15 Thread RAYMOND Romain
hello, thanks for your previous answer. I'd like to pass a parameter to method called within the forEach tag. This method have to initialize the collection used by forEach. And this parameter is retrieved throught a request.getParameter()... We can do it using JSTL c-rt.tld but we would like t

Re: JSTL tag forEach context question

2002-03-14 Thread Shawn Bayern
On Thu, 14 Mar 2002, RAYMOND Romain wrote: > I initilize my collections using beans : " > <% > Collection serialNos = datamodule.getAllApplicableSerialNos("HAP"); > %> > " > > and I must use pageContext.getAttribute to get back iterators values :" > >