RE: RE: Input and results on the same JSP

2006-11-09 Thread Asthana, Rahul
Mailing List Subject: Re: RE: Input and results on the same JSP Hi Guys, sorry to jump in this thread. I am trying to achieve this sort of AJAX functionality at Struts 1.2.x level. Is it possible? or Do I have to upgrade to Struts 2.x for AJAX support ? Any good articles for this (preferrable

RE: RE: Input and results on the same JSP

2006-11-09 Thread Prakash Inuganti -X \(pinugant - Digital-X, Inc. at Cisco\)
PM To: Struts Users Mailing List Subject: Re: RE: Input and results on the same JSP Hi Guys, sorry to jump in this thread. I am trying to achieve this sort of AJAX functionality at Struts 1.2.x level. Is it possible? or Do I have to upgrade to Struts 2.x for AJAX support ? Any good articles for

Re: RE: Input and results on the same JSP

2006-11-09 Thread robin bajaj
, robin - Original Message - From: "Prakash Inuganti -X (pinugant - Digital-X, Inc. at Cisco)" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" ; Sent: Thursday, November 09, 2006 3:36 PM Subject: RE: RE: Input and results on the same JSP Hi Brian, I am

RE: RE: Input and results on the same JSP

2006-11-09 Thread Prakash Inuganti -X \(pinugant - Digital-X, Inc. at Cisco\)
-user@jakarta.apache.org Subject: Fwd: RE: Input and results on the same JSP Hi there, We do this all over the place with our app. What we do, is the form that contains our query params (entered in your textarea) we also include a Collection of your choice of the Objects you retrieve from the db

Fwd: RE: Input and results on the same JSP

2006-11-09 Thread Brian Holzer
**DISCLAIMER** This e-mail and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you are not the named addressee, please notify the sender immediately by e-mail if you have received this e-mai

RE: Input and results on the same JSP

2006-11-09 Thread Prakash Inuganti -X \(pinugant - Digital-X, Inc. at Cisco\)
(PageContextImpl. java:450) Fixed it and Its working now. Thanks Thanks Prakash -Original Message- From: Jeremiah Johnson [mailto:[EMAIL PROTECTED] Sent: Thursday, November 09, 2006 1:47 PM To: Struts Users Mailing List Subject: Re: Input and results on the same JSP A table of form

RE: Input and results on the same JSP

2006-11-09 Thread Wesley Wannemacher
ut Dojo. -Wes > -Original Message- > From: Prakash Inuganti -X (pinugant - Digital-X, Inc. at > Cisco) [mailto:[EMAIL PROTECTED] > Sent: Thursday, November 09, 2006 12:41 PM > To: user@struts.apache.org > Subject: Input and results on the same JSP > > Hi, >

Re: Input and results on the same JSP

2006-11-09 Thread Jeremiah Johnson
A table of form elements mapped to the same property as other items on the form may be a problem (even if disabled). Other then that I can't think of an issue. Is there a specific problem? Jeremiah Prakash Inuganti -X (pinugant - Digital-X, Inc. at Cisco) wrote: Hi, I am trying to display en

Re: Input and results on the same JSP

2006-11-09 Thread Angelo zerr
Hi Prakash, If you can display the value of the textarea at readonly, you can use FormView. This taglib is enable to manage state in your JSP for your form HTML elements. Eg : generate (at READ-WRITE state) and INPUT_VALUE (at READ_ONLY state). You manage state into action. If you are interested

Input and results on the same JSP

2006-11-09 Thread Prakash Inuganti -X \(pinugant - Digital-X, Inc. at Cisco\)
Hi, I am trying to display entry and results on the same screen. The idea is like this. I have a textarea where some values can be entered. On submitting this data, the same form refreshes displaying the data in a table. Can this be done? I create a bean with the values entered in textarea and use