Re: Struts and JSTL

2006-06-22 Thread Per Jørgen Walstrøm
take a look at this thread: http://forum.java.sun.com/thread.jspa?threadID=629437&tstart=0 -Opprinnelig melding- Fra: fea jabi [mailto:[EMAIL PROTECTED] Sendt: 22. juni 2006 15:15 Til: user@struts.apache.org Emne: Struts and JSTL ${Form.map.customers} was working perfect when I was

Re: struts and JSTL

2006-01-23 Thread Laurie Harper
unt. Not sure why it can't find it. Thanks. From: Ed Griebel <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: struts and JSTL Date: Mon, 23 Jan 2006 13:17:07 -0500 The problem is that you're putting the 'amo

Re: struts and JSTL

2006-01-23 Thread Rahul Akolkar
On 1/23/06, fea jabi <[EMAIL PROTECTED]> wrote: > Thank you for your response. I have set the value in the formbean. > > hence, tried this instead > > > > ... value="${Form1.map.amount}" ... -Rahul > But only half of JSP is getting displayed. Not sure why? any idea why this > happening?

Re: struts and JSTL

2006-01-23 Thread fea jabi
ailing List" To: Struts Users Mailing List Subject: Re: struts and JSTL Date: Mon, 23 Jan 2006 13:17:07 -0500 The problem is that you're putting the 'amount' field into a hidden field and then trying to use that hidden field as a value, but your amt bean will actually contain t

Re: struts and JSTL

2006-01-23 Thread Ed Griebel
The problem is that you're putting the 'amount' field into a hidden field and then trying to use that hidden field as a value, but your amt bean will actually contain the value of the form field: "" Try this instead. First, in your action save this amount value to the request scope: request.set

Re: struts and JSTL

2005-12-05 Thread Wendy Smoak
On 12/5/05, fea jabi <[EMAIL PROTECTED]> wrote: > I am using Servlet engine 2.4. What will be the different advice? > > My web.xml looks something like this >PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" > "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd";> Does your app need

Re: struts and JSTL

2005-12-05 Thread Rahul Akolkar
On 12/5/05, fea jabi <[EMAIL PROTECTED]> wrote: > I am using Servlet engine 2.4. What will be the different advice? > > My web.xml looks something like this > PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" > "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd";> > > > ..

Re: struts and JSTL

2005-12-05 Thread fea jabi
Where can I get that web.xml from? Thanks. From: Wendy Smoak <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: struts and JSTL Date: Sun, 4 Dec 2005 17:41:17 -0700 On 12/2/05, fea jabi <[EMAIL PROTECTED]> wrote: > u

Re: struts and JSTL

2005-12-04 Thread Wendy Smoak
On 12/2/05, fea jabi <[EMAIL PROTECTED]> wrote: > using struts 1.2.7 > > Used c tags in my jsp and also gave this > <%@ taglib uri="http://java.sun.com/jstl/core"; prefix="c" %> ... > in web.xml > ... > > thinking one of the jars in it will have the JSTL stuff. Which ar has the > JSTL stuff in

Re: struts and JSTL

2005-12-04 Thread Laurie Harper
fea jabi wrote: using struts 1.2.7 Used c tags in my jsp and also gave this <%@ taglib uri="http://java.sun.com/jstl/core"; prefix="c" %> in web.xml http://java.sun.com/jstl/core /WEB-INF/lib/c.tld http://java.sun.com/jstl/fmt /WEB-INF/lib/fmt.tld

Re: Struts and JSTL ???

2004-09-04 Thread Bill Siggelkow
Add the following context-param to your web.xml -- the element should go before any servlet declarations ... ApplicationResources is the name of your message resoures. javax.servlet.jsp.jstl.fmt.localizationContext ApplicationResources Eric Chow wrote: Hello, How can JSTL uses Struts' resou