Re: pb with struts and jstl

2007-05-28 Thread Dave Newton
--- horri khalid <[EMAIL PROTECTED]> wrote: > property="customers" > value="" > /> > so i want to know where is the problem ? It's where you nest XML, which isn't allowed. If you're in a JSP 2+ container you can use straight JSP EL, if JSP <2 you can the use the html-el tags. d.

pb with struts and jstl

2007-05-28 Thread horri khalid
Hi I use for list of checkbox with the customer ID as value. but in the output i have this so i want to know where is the problem ? Any idea is appreciated.

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

Struts and JSTL

2006-06-22 Thread fea jabi
requestURI="PrepareAction.do" defaultsort="7" defaultorder="descending" pagesize="6"> ${Form.map.customers} was working perfect when I was using servlet 2.4 and JSTL 1.1. But now changed to servlet 2.3 and JSTL 1.0. the custs are null. Looks like ${Form.map.customers} is not getting evaluat

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

struts and JSTL

2006-01-23 Thread fea jabi
would like to display the value of property amount as $10,00,000. tried using the below. But getting an error/ it doesn't get displayed. Is this the way to do this. Or is there an easier way to do the same? styleClass="invisibleInput" readonly="true" tabindex="-1"/> <% System.out.

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

struts and JSTL

2005-12-02 Thread fea jabi
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 http://java.su

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

Struts and JSTL ???

2004-09-04 Thread Eric Chow
Hello, How can JSTL uses Struts' resources and locale setting ??? Eric - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]