RE: preview form

2004-02-17 Thread Guillermo Meyer
://providers.sourceforge.net/) to show the description. And we use providers to populate the Select Options. Cheers. Guillermo. -Original Message- From: Niall Pemberton [mailto:[EMAIL PROTECTED] Sent: Lunes, 16 de Febrero de 2004 09:19 p.m. To: Struts Users Mailing List Subject: Re: preview form Isn'

Re: preview form

2004-02-16 Thread Janice
Hello again, Thanks for the responses. What I ended up with was having my original form take the user to the preview form where all the form elements were disabled, instead of readonly. It even provides a nice visual clue that the form isn't for input, since all the fields are slightly g

Re: preview form

2004-02-16 Thread Niall Pemberton
uot;Janice" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 16, 2004 9:03 PM Subject: preview form > Hi Gang, > > I have a form that the client would like to be 'previewed' before users can > submit. The plan is to have a form with a button

RE: preview form

2004-02-16 Thread Nicholson, Robb
ginal Message- From: Dan Tran [mailto:[EMAIL PROTECTED] Sent: Monday, February 16, 2004 4:34 PM To: Struts Users Mailing List Subject: Re: preview form select does support readonly , unfortunaely it does not understand "readonly" attribute, but only "disabled" -Dan

Re: preview form

2004-02-16 Thread Shyam A
Maybe you can use a read-only text field to display the selected value of the drop-down on your preview page. You can get the label of the drop down in your action class for "Preview" , and then set the form bean property for the same. Also, use on your JSP to check for the user action, and displa

RE: preview form

2004-02-16 Thread Nicholson, Robb
m tags. Not sure if this was the best method, but in our case it was the quickest and easiest. Robb -Original Message- From: Janice [mailto:[EMAIL PROTECTED] Sent: Monday, February 16, 2004 4:03 PM To: [EMAIL PROTECTED] Subject: preview form Hi Gang, I have a form that the cli

Re: preview form

2004-02-16 Thread Dan Tran
select does support readonly , unfortunaely it does not understand "readonly" attribute, but only "disabled" -Dan - Original Message - From: "Janice" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 16, 2004 1:03 PM Subje

preview form

2004-02-16 Thread Janice
Hi Gang, I have a form that the client would like to be 'previewed' before users can submit. The plan is to have a form with a button that takes the user to the exact same form, but with all the form elements set to readonly. From there the user can go back to the editable form or can submit. A