RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-05 Thread Chappell, Simon P
] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data) Wossit a ZX81 perchance? -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] Sent: Wednesday, 5 March 2003 05:34 To: Struts Users Mailing List Subject: RE: [OT] Don't beat

RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-05 Thread Sean Chambers
Subject: RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data) Wossit a ZX81 perchance? -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] Sent: Wednesday, 5 March 2003 05:34 To: Struts Users Mailing List

RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-05 Thread Chappell, Simon P
List Subject: RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data) Wossit a ZX81 perchance? -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] Sent: Wednesday, 5 March 2003 05:34 To: Struts Users Mailing

RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-05 Thread Ray Madigan
8:53 PM To: Struts Users Mailing List Subject: RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data) Wossit a ZX81 perchance? -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] Sent: Wednesday, 5 March 2003 05:34

RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-05 Thread Chappell, Simon P
: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data) You know it was! The ZX81 was the first machine I owned. The first machinesI used were a ZX80 and an Acorn Atom at our school computer club. -Original Message- From: Andrew Hill [mailto

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread James Mitchell
Please label JavaScript topics as [OT]. -- James Mitchell Web Developer/Struts Evangelist http://jakarta.apache.org/struts/ People demand freedom of speech to make up for the freedom of thought which they avoid. - Soren Aabye Kierkegaard (1813-1855) -Original Message- From:

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread ROSSEL Olivier
I have a web page (the parent) that opens a child window using javascript. The parent window sets a field on the child window. The child window needs to use that data, as it is opening, to perform a DB query and display information on itself. The problem is that, even though the

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread Ray Madigan
in the child window. -Original Message- From: ROSSEL Olivier [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 9:11 AM To: 'Struts Users Mailing List' Subject: RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data I have a web page (the parent) that opens a child

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread Art Vandalay
I think you've misunderstood... The child is not an action, it is a page. A page that is opened using Javascript. In this case, the parent window is never submitted. From what I can tell about Struts (I'm pretty new to it) is that the only way to get data onto a form is via the submission of a

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread Ray Madigan
: RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data Please label JavaScript topics as [OT]. -- James Mitchell Web Developer/Struts Evangelist http://jakarta.apache.org/struts/ People demand freedom of speech to make up for the freedom of thought which they avoid. - Soren

RE: [OT]JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread Miller, Jason
Is it necessary that the child window displays a location bar? Seems to me that if you are opening the window using javascript, you can certainly turn off the various features you won't need anyway. The way you describe this it sounds like a dialog box, so it seems to me the simplest response is

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread James Mitchell
Actually, this has nothing to do with Struts. If your script is not setting fields (on parent, top, child, whatever) correctly, then you cannot assume that it is a problem with Struts. Struts picks up when the request comes in, anything before that is outside the scope. On the other hand

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread Art Vandalay
To: 'Struts Users Mailing List' Subject: RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data I have a web page (the parent) that opens a child window using javascript. The parent window sets a field on the child window. The child window needs to use that data

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread ROSSEL Olivier
I think you've misunderstood... The child is not an action, it is a page. A page that is opened using Javascript. In this case, the parent window is never submitted. From what I can tell about Struts (I'm pretty new to it) is that the only way to get data onto a form is via the

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread Art Vandalay
Mr. Police Man, If you read the question you'll see that my script *IS* setting field correctly ( I made that very clear in my original post). My question is how do I get those values set in an ActionForm when when the page is being displayed (not at submit time). --- James Mitchell [EMAIL

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread Art Vandalay
Oliver, Thanks. As mentioned, I am new to Struts but have used other Java MVC frameworks that allow me to do what I am trying to do with Struts (e.g. Barracuda). If Struts does not permit it, then I'll find another way to do it (query parameter being the best approach I guess) --- ROSSEL Olivier

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread Ray Madigan
Does the child window create the correct html:form action=xxx -Original Message- From: Art Vandalay [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 9:23 AM To: Struts Users Mailing List Subject: RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data Ray, I am

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread Art Vandalay
To: Struts Users Mailing List Subject: RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data Ray, I am doing that part. The problem is that I want that value to be available to the child's Action class ** as the child window is opening **. I am expecting

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread James Mitchell
(1813-1855) -Original Message- From: Art Vandalay [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 12:30 PM To: Struts Users Mailing List Subject: RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data Mr. Police Man, If you read the question you'll

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread Chappell, Simon P
James, are you being mean again? ;-) -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 1:05 PM To: 'Struts Users Mailing List' Subject: RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data LOLwhatever dude. It takes

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread Art Vandalay
04, 2003 1:05 PM To: 'Struts Users Mailing List' Subject: RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data LOLwhatever dude. It takes a real loser to got from 'discussion' to 'personal attack'. snip

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread James Mitchell
Kierkegaard (1813-1855) -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 2:53 PM To: Struts Users Mailing List Subject: RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data James, are you being mean again

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread Mark Galbreath
] Sent: Tuesday, March 04, 2003 2:57 PM To: 'Struts Users Mailing List' Subject: RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data Oh ya. I'm trying to be big brother. Although that's better than being called big sister ;) -- James Mitchell Web Developer/Struts Evangelist http

[OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-04 Thread Chappell, Simon P
, March 04, 2003 1:05 PM To: 'Struts Users Mailing List' Subject: RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data LOLwhatever dude. It takes a real loser to got from 'discussion' to 'personal attack'. snip

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread Art Vandalay
-Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 2:57 PM To: 'Struts Users Mailing List' Subject: RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data Oh ya. I'm trying to be big brother. Although that's better

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread Pani, Gourav
Subject: RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data I couldn't care less if I piss him off. He is certainly not the only person on this list who can provide help. He's just a fish in a very large pond (i.e. insignificant in the long run). So far he has shown me that is just

RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-04 Thread James Turner
Simon Don't mess with the Struts old timers Chappell That's right, beat up young punks like me instead :-) James LISP-BOY Turner - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-04 Thread Chappell, Simon P
! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data) Simon Don't mess with the Struts old timers Chappell That's right, beat up young punks like me instead :-) James LISP-BOY Turner - To unsubscribe, e

RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-04 Thread Pani, Gourav
beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data) Gladly only I had you figured as an old guy! Simon Programmed in RPG/400 once and now regret it Chappell -Original Message- From: James Turner [mailto:[EMAIL PROTECTED] Sent: Tuesday, March

RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-04 Thread James Turner
From: Chappell, Simon P [mailto:[EMAIL PROTECTED] Gladly only I had you figured as an old guy! Simon Programmed in RPG/400 once and now regret it Chappell Well, I'm old to the computer industry, but only a year with Struts... James Has punched cards for OS/VS1 on an IBM/360

RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-04 Thread Chappell, Simon P
] JavaScript: ActionForm Does Not Contain Dynamically Set Data) From: Chappell, Simon P [mailto:[EMAIL PROTECTED] Gladly only I had you figured as an old guy! Simon Programmed in RPG/400 once and now regret it Chappell Well, I'm old to the computer industry, but only a year

RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data

2003-03-04 Thread Mark Galbreath
You are right; James is just a Lispfish. Pay no attention to him; pay attention to the FISHERMEN. We are the master baters. Mark PS: a little humility and appreciation goes a long way in life, dude. -Original Message- From: Art Vandalay [mailto:[EMAIL PROTECTED] Sent: Tuesday, March

[OT] Ancient computing (was RE: [OT] Don't beat on James! (was RE:[OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-04 Thread Dave Newton
My first two computers didn't even have floppy drives ... 300 baud tape and 1024 bytes of memory! My machine TOTALLY ruled over yours; I had 4K. Nyah. (Well, actually, I guess my _first_ first computer had like maybe 256 bytes and toggle switches, but I didn't get very far with that, being

Re: [OT] Ancient computing (was RE: [OT] Don't beat on James! (was RE:[OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-04 Thread alexj
! (was RE:[OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data) My first two computers didn't even have floppy drives ... 300 baud tape and 1024 bytes of memory! My machine TOTALLY ruled over yours; I had 4K. Nyah. (Well, actually, I guess my _first_ first computer had like maybe 256

RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-04 Thread Andrew Hill
Wossit a ZX81 perchance? -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] Sent: Wednesday, 5 March 2003 05:34 To: Struts Users Mailing List Subject: RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data) My first