Re: UPON APPLICATION STARTUP!!!!!!!!!!!!!!!!

2003-08-14 Thread Curtney Jacobs
directly for such tasks as rendering options in selects... -Original Message- From: Curtney Jacobs [mailto:[EMAIL PROTECTED] Sent: Monday, 11 August 2003 13:46 To: Struts Users Mailing List Subject: UPON APPLICATION STARTUP Greetings! I would like to load default

UPON APPLICATION STARTUP!!!!!!!!!!!!!!!!

2003-08-14 Thread Curtney Jacobs
Greetings! I would like to load default values in my forms upon application startup. Is this possible with STRUTS? Seriously, is this possible with STRUTS? If not, I will have to look some where else for this. Many of my forms have drop down list that enables the user to choose the

Calling a default Action upon App startup

2003-08-14 Thread Curtney Jacobs
Greetings everyone! I would like to preopulate serveral forms with default values retrieve from a database upon application startup or after a successful login by the user. I have an approach in mind, however, I am not sure if it is the most efficient or best approach. My approach is to use a

Re: Calling A default Action Upon Application Startup

2003-08-14 Thread Curtney Jacobs
and then forward to jsp, why you need to pre-populate ?? Curtney Jacobs [EMAIL PROTECTED] escribió en el mensaje news:[EMAIL PROTECTED] Greetings everyone! I would like to preopulate serveral forms with default values retrieve from a database upon application startup or after

Re: Calling a default Action upon App startup

2003-08-07 Thread Curtney Jacobs
. Our data that don't change often is in javabeans loaded by our ServletContextListener. Mohan -Original Message- From: Curtney Jacobs [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 9:33 AM To: Struts Users Mailing List Subject: Calling a default Action upon App startup

Calling A default Action Upon Application Startup

2003-08-04 Thread Curtney Jacobs
Greetings everyone! I would like to preopulate serveral forms with default values retrieve from a database upon application startup or after a successful login by the user. I have an approach in mind, however, I am not sure if it is the most efficient or best approach. My approach is to use a

Form action url get rewritten.

2003-08-02 Thread Curtney Jacobs
Greetings!! I am getting this strange behavior in my forms. Within my jsp form I have my action written as the following: action=/student/update.do However, when the form is displayed via the browser, and a doing a view source, I see the following: action=/sesm/student/update.do It seems

Re: Form action url get rewritten.

2003-08-02 Thread Curtney Jacobs
forward name=success path=/content/page/student.jsp?Student redirect=true / /action On Friday 25 July 2003 11:47 am, Curtney Jacobs

Reflecting Changes in a Form After data has been updated

2003-07-29 Thread Curtney Jacobs
Greetings everyone! I have an input form where my users can update their profile. After the user have select the Update button I would like the form to reflect the updated information the user has just submitted. What is the best way to implement this? I can think of one way; in my update

Re: Reflecting Changes in a Form After data has been updated

2003-07-29 Thread Curtney Jacobs
missing something? -Original Message- From: Curtney Jacobs [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 10:38 AM To: Struts Users Mailing List Subject: Reflecting Changes in a Form After data has been updated Greetings everyone! I have an input form where my users can

Re: Reflecting Changes in a Form After data has been updated

2003-07-29 Thread Curtney Jacobs
to display it? -Original Message- From: Curtney Jacobs [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 12:05 PM To: Struts Users Mailing List Subject: Re: Reflecting Changes in a Form After data has been updated The form is first populated with the user information from

Re: Reflecting Changes in a Form After data has been updated

2003-07-29 Thread Curtney Jacobs
that particular problem at one point. On another note, there is another thread currently active on the mailing list that is rather similar (Subject is: Form Bean Help?) -Original Message- From: Curtney Jacobs [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 1:57 PM To: Struts Users

Re: OTP-Dynamically building an SQL Query from ActionForm inputs

2003-07-21 Thread Curtney Jacobs
Thanks David. I understand. _CJ On Sunday 20 July 2003 01:03 pm, David Graham wrote: --- Curtney Jacobs [EMAIL PROTECTED] wrote: Greetings David. I understood everything up to the point where I have to read in a properties file. If it is not to much of a problem., can you please

OTP-Dynamically building an SQL Query from ActionForm inputs

2003-07-19 Thread Curtney Jacobs
(studentVO.getFirstName().length() ) 0) { queryStr.append( and firstname = ' + studentVO.getFirstName() + '); } queryStr.append(;); Thanks inadvance, Curtney Jacobs - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: OTP-Dynamically building an SQL Query from ActionForm inputs

2003-07-19 Thread Curtney Jacobs
be the same as the criteria names used on the form. I used this technique recently (without Struts so I had to do the Map backed form business by hand); it's really not very much code and is easy to add criteria to. David --- Curtney Jacobs [EMAIL PROTECTED] wrote: Hi everyone, I know

Bread crumb trail

2003-07-18 Thread Curtney Jacobs
Greetings! About two weeks ago someone said they would post the Tiles implementation of a Bread crumb trail, if requested. I requested. What happened to the Bread crumb trail post? _CJ - To unsubscribe, e-mail: [EMAIL

Re: Bread crumb trail

2003-07-09 Thread Curtney Jacobs
. I can send you the code if you are interested. I |have not created a tutorial. | |Cal | |http://www.calandva.com/ | |-Original Message- |From: Curtney Jacobs [mailto:[EMAIL PROTECTED] |Sent: Tuesday, July 01, 2003 16:25 |To: Struts Users Mailing List |Subject: Bread crumb trail

Re: Bread crumb trail

2003-07-02 Thread Curtney Jacobs
Thanks sandeep. Will look into struts-layout. _CJ On Wednesday 02 July 2003 3:56 pm, Sandeep Takhar wrote: Don't know if this is one, but there is a struts-layout example. maybe try a google on struts-layout... sorry that's all I have.. sandeep --- Curtney Jacobs [EMAIL PROTECTED

Bread crumb trail

2003-07-01 Thread Curtney Jacobs
Greetings!! Does anyone know of a bread crumb trail implemenation using Struts and Tiles? A link to a tutorial/info would be helpful. Thanks inadvance, Curtney Jacobs - To unsubscribe, e-mail: [EMAIL PROTECTED

JUnit Error

2003-02-26 Thread Curtney Jacobs
Greetings everyone!! I don't understand why I am receiving the following failure from JUnit. I am pretty sure that my log4j.xml file is properly constructed. I have checked the archive and someone did post a similiar question, however, there was no reply. If you know the cause and solution

Making a Form non-editable

2003-01-21 Thread Curtney Jacobs
Greetings!! Is there a way to make an entirre html form non-editable in struts? Meaning, all inputs, select, and radio fields would be disabled. I am aware that the individual fields can be disabled by setting the disabled attribute to true for those fields. However, I would like to

Re: Making a Form non-editable

2003-01-21 Thread Curtney Jacobs
Hello, Acutally, the user can read (see) the data, however, they cannot modify the data. What you are presenting actually prevents the user from seeing the data at all. Correct me if I am wrong. _CJ On Tuesday 21 January 2003 8:30 pm, Jarnot Voytek Contr AU HQ/SC wrote: That's what I do,

Re: Making a Form non-editable

2003-01-21 Thread Curtney Jacobs
two seperate views for the display of the same data, however for different purposes. Comments??? _CJ On Tuesday 21 January 2003 1:05 pm, Curtney Jacobs wrote: Hello, Acutally, the user can read (see) the data, however, they cannot modify the data. What you are presenting actually prevents

Re: Making a Form non-editable

2003-01-21 Thread Curtney Jacobs
Sorry Jarot, I misunderstood you. I stand corrected. This will definetly prevent the user from submitting the form via the submit button. _CJ On Tuesday 21 January 2003 9:21 pm, Jarnot Voytek Contr AU HQ/SC wrote: I put the form submit button in that tag, they can see everything else. --

Re: Making a Form non-editable

2003-01-21 Thread Curtney Jacobs
, they can see everything else. -- Voytek Jarnot Quidquid latine dictum sit, altum viditur. -Original Message- From: Curtney Jacobs [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 7:06 AM To: Struts Users Mailing List Subject: Re: Making a Form non-editable

Security Filter and ActionForm

2003-01-10 Thread Curtney Jacobs
or comments will be much appreciated. Curtney Jacobs -- U-Interface.com -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: PrePopulation of FormBean Values

2003-01-06 Thread Curtney Jacobs
Hi, this has been discussed before. Do a search on the list archive _CJ. On Thursday 02 May 2002 10:23 am, ashokd wrote: Hi, How to propopulate the Form values in a Form (which is using the Struts FormBean) The scope of the FormBean is request. Please provide an example on this.

Fwd: Re: Populating multiple forms from one action class

2002-12-05 Thread Curtney Jacobs
Sorry, this is for everyone too. _CJ -- Forwarded Message -- Subject: Re: Populating multiple forms from one action class Date: Wed, 4 Dec 2002 23:42:14 + From: Curtney Jacobs [EMAIL PROTECTED] To: Craig R. McClanahan [EMAIL PROTECTED] Greetings Craig!! just to verify

Re: Fwd: Re: Populating multiple forms from one action class

2002-12-05 Thread Curtney Jacobs
: request.getSession().setAttribute(StudentForm, sForm); request.getSession().setAttribute(GuardianForm, gForm); Thanks in advance, Curtney Jacobs On Thursday 05 December 2002 12:11 am, Curtney Jacobs wrote: Sorry, this is for everyone too. _CJ -- Forwarded Message -- Subject

Re: Populating multiple forms from one action class

2002-11-29 Thread Curtney Jacobs
be afraid to comment :-) Thanks in advance, Curtney Jacobs On Friday 29 November 2002 12:24 pm, Sven Frederik Pohl wrote: Hi Curtney, The forms could only be populated if the form data is send via the HTTP request. that only happens if the there is only one enclosing HTML form. Since (as far

Populating multiple forms from one action class

2002-11-28 Thread Curtney Jacobs
to populate all three forms simutaneously. Thanks in advance, Curtney Jacobs -- U-Interface.com -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: NullPointerException in TabsLayout??

2002-10-06 Thread Curtney Jacobs
, David M. Karr wrote: Curtney == Curtney Jacobs [EMAIL PROTECTED] writes: Curtney Greetings!! Curtney I am having problems viewing the tiles-documentation example, specifically the Curtney tab examples. Everything else works fine except the tabs. Curtney There was a similar question

Re: NullPointerException in TabsLayout??

2002-10-06 Thread Curtney Jacobs
=java.util.List / The id attribute was missing. Thanks David. It looks like a little debugging time did the job. (Cedric please let me know if this is correct). _CJ On Sunday 06 October 2002 12:32 am, Curtney Jacobs wrote: Hi, It seems that the tabList variable is null. I checked the tiles-examples

NullPointerException in TabsLayout??

2002-10-05 Thread Curtney Jacobs
Greetings!! I am having problems viewing the tiles-documentation example, specifically the tab examples. Everything else works fine except the tabs. There was a similar question posted to the group on July 17, 2002, titled Struts Tabs Example Error by Peggy Davidson. However, the problem was

Re: tabsLayout.jsp ServletException??

2002-10-04 Thread Curtney Jacobs
September 2002 8:50 pm, Curtney Jacobs wrote: Sorry, just wanted to restate the last question. Does tabs works under the struts 1.1-b2? _CJ On Monday 30 September 2002 8:45 pm, Curtney Jacobs wrote: Hi, you are correct, the web server could not find the specified class. I included

Re: tabsLayout.jsp ServletException??

2002-09-30 Thread Curtney Jacobs
of your tiles. Can you try them separately, especially the ones inserted inside tabs. Also, can you confirm that tabs from tiles-doc war files work for your configuration ? Cedric Curtney Jacobs wrote: Greetings everyone!! I am trying to incoporate a tab layout in one of my

Re: tabsLayout.jsp ServletException??

2002-09-30 Thread Curtney Jacobs
Sorry, just wanted to restate the last question. Does tabs works under the struts 1.1-b2? _CJ On Monday 30 September 2002 8:45 pm, Curtney Jacobs wrote: Hi, you are correct, the web server could not find the specified class. I included necessary information within my classpath environment

Re: tabsLayout.jsp ServletException??

2002-09-28 Thread Curtney Jacobs
separately, especially the ones inserted inside tabs. Also, can you confirm that tabs from tiles-doc war files work for your configuration ? Cedric Curtney Jacobs wrote: Greetings everyone!! I am trying to incoporate a tab layout in one of my jsp pages. I have download