Wow does this list seem very small at the moment.
On 12/10/07, Paul Benedict <[EMAIL PROTECTED]> wrote:
>
> LOLOL
>
> On Dec 10, 2007 11:06 AM, Dave Newton <[EMAIL PROTECTED]> wrote:
>
> > --- James Sanders <[EMAIL PROTECTED]> wrote:
> > > James Sanders wants to stay in better touch using some of
On 12/10/07, Dave Newton <[EMAIL PROTECTED]> wrote:
>
> --- James Sanders <[EMAIL PROTECTED]> wrote:
> > James Sanders wants to stay in better touch using some of Google's
> coolest
> > new products.
>
> Only sports stars get to refer to themselves in the third person.
Bob Dole is a sports star ?
Hi all, working with a struts application that I am trying to add
quartz to but I am running into a slight snag. I can't seem to get
the scheduler to be recognized. I am trying to follow the following
tutorial:
http://www.onjava.com/pub/a/onjava/2006/03/01/job-scheduling-in-web-application.html
stings.
On 12/6/06, nicolas de loof <[EMAIL PROTECTED]> wrote:
>
> It seems to work !
>
> Just was curious not getting messages I send to the list in my mail box.
>
> 2006/12/6, Adam K <[EMAIL PROTECTED]>:
> >
> > You had a question if it would wor
You had a question if it would work ?
On 12/6/06, nicolas de loof <[EMAIL PROTECTED]> wrote:
Please ignore ...
just testing my gMail account.
p.
On 11/23/06, Puneet Lakhina <[EMAIL PROTECTED]> wrote:
On 11/22/06, Adam K <[EMAIL PROTECTED]> wrote:
>
> If you might be able to provide a sample I would be very greatful.
> As it stands I have come up with the following :
> changing the
AIL PROTECTED]> wrote:
From: Adam K [mailto:[EMAIL PROTECTED]
> What is the purpose of the System.out.println that you have at the end
> of your action ?
Debugging?
Dave
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For addit
based on a
url parameter.
thanks once again.
Adam
On 11/22/06, Adam K <[EMAIL PROTECTED]> wrote:
Thanks for the lengthy example, but there is one part that I am completly
lost on. I thought that the following occurred:
Click link to open page, formbean is reset aciton poppulates formbe
ystem.out.println("prodSelectionForm="+prodSelectionForm);
Regards
Raghu
-Original Message-
*From:* Adam K [mailto:[EMAIL PROTECTED]
*Sent:* Wednesday, November 22, 2006 3:06 AM
*To:* [EMAIL PROTECTED]
*Cc:* Struts Users Mailing List
*Subject:* Re: Indexed Properties
If you might
Hello all, I am sorry to subject this list to yet another person who doesn't
understand something, but I can't for the life of me figure out hand
cranking lazy lists.
I am using 1.2.9 with java 1.5.0_06 And I can't get lazy lists to work.
I am trying to use what I found at :
http://wiki.apache.
ot;results" is a nested property in your actionform.
"results" collection has a collection of objects.
I have used Nested tags for most complex requirments and succeeded.
Nested Tags is the real power of Struts...
Regards
Raghu
-----Original Message-
From: Adam K
tionForm and
DynaActionForm.
Hubert
[1] http://struts.apache.org/mail.html
On 11/17/06, Adam K <[EMAIL PROTECTED]> wrote:
> I think I have found the problem - or at least a potential cause. Would
it
> be correct in stating that this will not work using ActionForm (what I
was
>
Adam,
Try adding a getResultsPage() that doesn't take params and always
returns a valid collection. (Throw in the setResultsPage() that
accepts a collection as well.)
Hubert
On 11/17/06, Adam K <[EMAIL PROTECTED]> wrote:
> This has been driving me nuts for the past little bit.
This has been driving me nuts for the past little bit.
I have a page that is populated using indexed properties. The prepopulation
works fine, and I get the results as I would expect them, but trying to
submit the form I get an index out of bounds exception. I know that it is
being caused becau
e:
On 11/14/06, Adam K <[EMAIL PROTECTED]> wrote:
>
> Hi all , I am attempting to do the following, and it obviously isn't
> working, but I was hoping someone on the list would point me to
something
> that might work instead:
>
> I have this text field and I want to
Hi all , I am attempting to do the following, and it obviously isn't
working, but I was hoping someone on the list would point me to something
that might work instead:
I have this text field and I want to be able to alternate the readonly
property from true and false. I tried to put in the below
help so far.
robin
On 11/3/06, Adam K <[EMAIL PROTECTED]> wrote:
>
> Hi all I am using struts 1.2.9 and starting to work on error
> validation. So
> far I have my login page using:
>
>
> etc etc etc.
>
> I was wondering firstly Is this still
Hi all I am using struts 1.2.9 and starting to work on error validation. So
far I have my login page using:
etc etc etc.
I was wondering firstly Is this still the best manner in which to display
errors ?
The second question which has more to do with the title is
How does one use
certain your question about the setting the value on the set and not the get
hit the nail on the head. I will work on the suggestions that you made and
see what progress I can make.
Thanks again so much for all the time and effort.
On 10/19/06, Adam K <[EMAIL PROTECTED]> wrote:
It's
is.results.add(new Product());
}
Product p = (Product) results.get(index);
return p.getNumProducts();
}
On 10/19/06, Puneet Lakhina <[EMAIL PROTECTED]> wrote:
On 10/20/06, Adam K <[EMAIL PROTECTED]> wrote:
>
> Getter and setter methods for ? (Sorry if
Getter and setter methods for ? (Sorry if it should be obvious but I want
to clarify as it isn't obvious to me)
As far the error message here is what I recieve:
javax.servlet.ServletException: BeanUtils.populate
org.apache.struts.util.RequestUtils.populate(RequestUtils.java:495)
t out in
the second action.
Again thanks for all thoughts/ideas/suggestions
On 10/19/06, Adam K <[EMAIL PROTECTED]> wrote:
If this is a bad technique I would be more than happy to change it to a
more standard technique. Any suggestions on how to improve my code are
always welcome.
tha
ts.get(5), which doesn't exist. You should be
able
to change your while list to something like:
while(index >= this.results.size() + 1) {
this.results.add(new Product());
}
(*Chris*)
On 10/19/06, Adam K <[EMAIL PROTECTED]> wrote:
>
> Here are the 2 get methods that I hav
>= this.results.size())
{
this.results.add(new Product());
}
Product p = (Product) results.get(index);
return p.getNumProducts();
}
On 10/19/06, Puneet Lakhina <[EMAIL PROTECTED]> wrote:
On 10/19/06, Adam K <[EMAIL PROTECTED]> wrote:
&g
Hi all I have been working on this probelm for the past couple of days, and
don't seem to be making any progress on it. I am fairly certain it is a
problem with my understanding of struts, and as such it makes it quite
difficult for me to solve the problem myself.
I am trying to use a textfield a
I am working with struts 1.2.9 and trying to use the iterate function. I
seem to be having a problem extracting the value from a text field inside an
iterated loop. I am able to get/set values thare are being placed simply
into html, but run into difficulties when working with the text fields.
26 matches
Mail list logo