Using indexes to access page elements is not a good practice. You should
access the elements by id or through association whenever possible.
In your case, the following should be sufficient:
onchange="this.form.submit();"
If you need to do some preprocessing, I'd recommend the following pattern:
form. But nothing works.
-Ursprüngliche Nachricht-
Von: Stephen Smithstone [mailto:[EMAIL PROTECTED]
Gesendet: Freitag, 4. April 2003 13:34
An: Struts Users Mailing List
Betreff: Re: javascript and Struts
have u tried document.forms[ 0 ].submit( ) ???
On Friday 04 April 2003 12:31 pm, O
:[EMAIL PROTECTED]
Gesendet: Freitag, 4. April 2003 13:34
An: Struts Users Mailing List
Betreff: Re: javascript and Struts
have u tried document.forms[ 0 ].submit( ) ???
On Friday 04 April 2003 12:31 pm, Oliver Reflé wrote:
> Hi Guys,
> i have a strange problem. Maybe you can help me. I would l
have u tried document.forms[ 0 ].submit( ) ???
On Friday 04 April 2003 12:31 pm, Oliver Reflé wrote:
> Hi Guys,
> i have a strange problem. Maybe you can help me. I would like to submit a
> form when a select box value
> has changed.Here is the code like i try it:
>
>
>
> DatenfeldWert
> Kampagn
Well, I am not sure about the JS in struts yet, but you do not submit a document, you
submit a form.
If there is only 1 form on the page, try 'onChange="forms[0].submit()" '
but, also try to add 'onChange="submitMyForm(this)" '
and add a function at the top of this page called "submitMyForm()" a
-
From: "Rick Reumann" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Friday, December 20, 2002 12:46 PM
Subject: Re: javascript and STRUTS
>
>
> On Friday, December 20, 2002, 3:29:15 PM, Eric wrote:
>
> ECH> Is there
On Friday, December 20, 2002, 3:29:15 PM, Eric wrote:
ECH> Is there anyway to capture the value of the bean before it is overwritten?
Since your using javascript coulnd't you set a hidden field
"oldValue" that you can set before you do any overwriting? Then you
would have access to the old valu
At 5:43 PM -0400 2002/06/13, Leonardo Maciel wrote:
>
>
>or if you want open the page with reportNav action (that's what I use):
>
>href="javascript:openWindow('reportDelivery','fullPath/reportNav.do?action=Load',1,350,300)">
The problem with this one is that you end up hardcoding the web app
co
or if you want open the page with reportNav action (that's what I use):
or, not sure if they work, if you realy wants to use html:link:
or
-Original Message-
From: Villegas, Courtney [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 13, 2002 4:54 PM
To: 'Struts Users Mailing List'
At 2:03 PM -0700 2002/06/13, Villegas, Courtney wrote:
>can I feed an action into Javascript?
>
>This is what my struts link would look like to forward to another page:
>
>
>and this is what my javascript looks like to open the new browser window
> openWindow('reportDelivery', '/budsD
350, 300)
How can I combine the two?
thanks
-Original Message-
From: greg rebuck [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 13, 2002 2:01 PM
To: Struts Users Mailing List
Subject: Re: Javascript and Struts
We've done this. It's really no different, I think, than usi
We've done this. It's really no different, I think, than using Javascript with
vanilla JSP/Servlets.
"Villegas, Courtney" wrote:
> Is it possible to mix javascript and struts? I want to create a popup
> window that is opened through an action.
>
> There was some talk of doing this about a mont
You've got to use a different syntax for referencing the browser dom.
document.forms["frm"].elements["txtName[1]"].value()
JM
> -Original Message-
> From: deepak [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, May 15, 2002 7:01 AM
> To: [EMAIL PROTECTED]
> Subject: Javascript and struts c
Disregard this message. I got it to work.
- Original Message -
From:
cahana
To: [EMAIL PROTECTED]
Sent: Sunday, July 08, 2001 4:39 PM
Subject: javascript and struts
I have a jsp page that has current address information and
permanent address information. I want
It sounds like a straight Javascript issue. Once the fields are
populated and submitted, Struts will pickup them up from the request,
and continue processing them.
The Struts HTML tags expose all the Javascript event handlers, so you
can specifty an onchange scriptlet that calls a script to set
EMAIL PROTECTED]'
Subject: RE: javascript and struts
Thanks! That worked.
To:
"'[EMAIL PROTECTED]'"
Jason Chaffee <[EMAIL PROTECTED]>
.
To: "'[EMAIL PROTECTED]'"
Jason Chaffee <[EMAIL PROTECTED]>
Subject:
Title: RE: javascript and struts
Try thg following
document.form["data.emplyeeName"].value
-Original Message-
From: Will Spies/Towers Perrin [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 08, 2001 5:39 AM
To: [EMAIL PROTECTED]
Subject: javascript and struts
I have
On Thu, 5 Apr 2001, Dorai, Harish (c) wrote:
> It seems the "onclick" event overrides the submit action and hence your form
> is not getting submitted. Instead of using "form:submit" use the "Button"
> tag and in the "onclick" function put this code.
The html:submit tag creates an input type of
Hi Joel,
I have forgotten to write you my other idea to solve your problem :-)
Here it is:
Remove the onClick handler and the JavaScript from you login screen. After a
succesfull login (logon.do) show a page with the following content:
window.open('reconciliation.jsp','recwindow','width=800
Hi Joel,
>
> Username:
> Password:
> onclick =
> "window.open('reconciliation.jsp','recwindow','width=800,height=600,resi
> zable=no,scrollbars=yes');return(false)"/>
>
>
>
> This works in that it opens a new window and stops anything happening in
> th
.form[0].submit();
> return false;
>
>
>
> -Original Message-
> From: JOEL VOGT
> [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, April 05, 2001 8:39 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Javascript and struts
>
>
> Hi,
> I have this code:
>
dow','width=800,height=600,resizable
=no,scrollbars=yes');
document.form[0].submit();
return false;
-Original Message-
From: JOEL VOGT [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 05, 2001 8:39 AM
To: [EMAIL PROTECTED]
Subject: Re: Javascript and struts
Hi,
I have th
Hi,
I have this code:
Username:
Password:
This works in that it opens a new window and stops anything happening in
the old window. The problem is, the form doesn't seem to be submitted,
and the action is not called! Consequently, there is no login.
Any ideas?
Tha
return false in the event handler js code:
> Hi all,
>
> I have a simple login form. When the user clicks the submit button, I
> want to open up a new window using javascript. This window will have no
> back button etc for the user to play around with.
> This works fine, I get my window
Hi Joel,
only to make sure I understand you correct: You use in you page
In the openNewWindow() function you call "form.submit()"?
If the above is correct you can try two things:
1. add a "return false;" to your openNewWindow() function.
2. change the type from "submit" to "button".
Ho
26 matches
Mail list logo