Re: page flow control

2001-05-16 Thread Tharwat Abdul-Malik
Search the archives for implementing Wizard style interfaces. There have been several posts on how to accomplish it. - Original Message - From: Nathan Coast [EMAIL PROTECTED] To: struts-user [EMAIL PROTECTED] Sent: Wednesday, May 16, 2001 10:09 AM Subject: page flow control Hi, In

Re: Form Reset

2001-05-12 Thread Tharwat Abdul-Malik
In your reset method include a condition where the values are only reset on the last page of the form. - Original Message - From: Michael Binette [EMAIL PROTECTED] To: Struts-User [EMAIL PROTECTED] Sent: Saturday, May 12, 2001 8:20 AM Subject: Form Reset The documentation mentions

Re: ActionForm.reset() not called when form tag creates bean

2001-05-10 Thread Tharwat Abdul-Malik
How about not clearing the values in your reset() method (or only clear values upon some special condition). - Original Message - From: John Raley [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 09, 2001 9:52 PM Subject: ActionForm.reset() not called when form tag creates

Re: File uploads and Struts

2001-05-03 Thread Tharwat Abdul-Malik
There is an pretty good example in the source directory src/upload/* or webapps/struts-upload.war - Original Message - From: Graeme Miller [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 03, 2001 2:15 AM Subject: File uploads and Struts Anyone here know where I can find a

Re: resin and struts example

2001-04-26 Thread Tharwat Abdul-Malik
It looks like the DatabaseServlet is not being loaded. If you are configuring your web app using resin.conf, you will need to add the DatabaseServlet to it and have it loaded at startup. I'm using Resin also, but I use an web.xml file as follows: !-- Initialization Database Servlet

Re: Looking for struts sample demonstrating multi paged wizards

2001-04-26 Thread Tharwat Abdul-Malik
Search the archives for: Re: wizard style example, anywhere? I posted a reply to a similar question two days ago. - Original Message - From: Jeff Trent To: [EMAIL PROTECTED] Sent: Thursday, April 26, 2001 9:58 PM Subject: Looking for struts sample

Re: wizard style example, anywhere?

2001-04-25 Thread Tharwat Abdul-Malik
I use something like the following in my struts-config.xml file: actionpath="/signup" type="SignupAction" name="signupForm" scope="session" input="page1.jsp" forward name="page1" path="page1jsp"/

Re: Iterate Tag

2001-04-15 Thread Tharwat Abdul-Malik
What if you add a size property, then put a logic greaterThan (zero) tag around the iterate tag. - Original Message - From: "Stanley Tan" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, April 15, 2001 1:56 AM Subject: Iterate Tag Hi, I have an iterate tag that loops through the

Re: System level properties?

2001-04-15 Thread Tharwat Abdul-Malik
I don't know if this answers the first part of your question. But in your third paragraph where you seem to reframe the question. What I've done in that case was to create servlet who's sole purpose is to initialize certain parameters (database properties, other static properties, etc). The

Re: select option

2001-04-14 Thread Tharwat Abdul-Malik
I'm a newbie to struts. In fact I just downloaded it yesterday (Friday) and thought I'd get involved. I built a very simple application last night. But I think the struts tags already selects the correct item. I use something like the following to display the items in a list. html:select

Re: Pre populating a Form Bean

2001-04-14 Thread Tharwat Abdul-Malik
Title: Pre populating a Form Bean Assuming that jsp2 will use the same data in the formBean, just stuff it in the request object in the perform method. Then jsp2 can use the bean. - Original Message - From: Tewathia, Atul To: '[EMAIL PROTECTED]' Sent: Saturday, April

Re: Pre populating a Form Bean

2001-04-14 Thread Tharwat Abdul-Malik
Title: RE: Pre populating a Form Bean Does jsp1 forward to jsp2? If so, populate the bean in the perform method, stuff it in the request, the jsp2 can find it there. - Original Message - From: Tewathia, Atul To: [EMAIL PROTECTED] Sent: Sunday, April 15, 2001 12:46