RE: strut help

2001-12-10 Thread Mike Ashamalla

I've used DispatchAction successfully to process multiple actions.  You can
find out more about DispatchAction here:
http://jakarta.apache.org/struts/api-1.0/org/apache/struts/actions/DispatchA
ction.html

Thank You,


Mike Ashamalla, CEBS
VistaXtreme
[EMAIL PROTECTED]

-Original Message-
From: Kiet Nguyen [mailto:[EMAIL PROTECTED]]
Sent: Saturday, December 08, 2001 2:18 PM
To: 'Struts Users Mailing List'
Subject: RE: strut help


I can't because I have 3 actions on that page (insert, add, delete).  I need
to be able to change the action.

thanks.

-Original Message-
From: Amjad Ashkar [mailto:[EMAIL PROTECTED]]
Sent: Saturday, December 08, 2001 12:45 PM
To: Struts Users Mailing List
Subject: RE: strut help


Why don't you just use the input type=image
src=whatever.gif and set the form action=/logon.do

good luck,
--- Strichartz, Beth [EMAIL PROTECTED]
wrote:
 what is the return false about?
 try removing that
 a href= onClick=send('logon.do'); return false
 img
 scr=image.gif/a

 -Original Message-
 From: Kiet Nguyen [mailto:[EMAIL PROTECTED]]
 Sent: Saturday, December 08, 2001 2:42 PM
 To: '[EMAIL PROTECTED]'; Struts-User (E-mail)
 Subject: strut help


 Please help.  I'm in a dead-end.

 I need to write the submit button with an image and
 a pop-up dialog and it
 will work under
 netscape 4.7  IE  net6 when the browser is set
 never check for new
 version for page as the caching technique.  I use
 javascript to submit the
 form, but when caching is set, the form doesn't get
 submit.

 Javascript:
 function send(msgAction)
 { document.forms[0].action = msgAction;
   document.forms[0].submit();
 }

 a href= onClick=send('logon.do'); return false
 img
 scr=image.gif/a






 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]


 This message contains information which may be
 confidential and privileged.
 Unless you are the addressee  (or authorized to
 receive for the addressee),
 you may not use, copy or disclose to anyone the
 message or any information
 contained in the message.  If you have received the
 message in error, please
 advise the sender by reply e-mail, and delete or
 destroy the message.

 Thank you.


 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]





__
Do You Yahoo!?
Send your FREE holiday greetings online!
http://greetings.yahoo.com

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: strut help

2001-12-09 Thread Yee Keat

On Sunday 09 December 2001 03:41 am, you wrote:

try this

a href=javascript:send('logon.do'); img scr=image.gif/a

As far as I know, this solve my problem on netscape 4.x, in IE, Mozilla and 
Opera your version works fine.

 Please help.  I'm in a dead-end.

 I need to write the submit button with an image and a pop-up dialog and it
 will work under
 netscape 4.7  IE  net6 when the browser is set never check for new
 version for page as the caching technique.  I use javascript to submit the
 form, but when caching is set, the form doesn't get submit.

 Javascript:
 function send(msgAction)
 { document.forms[0].action = msgAction;
   document.forms[0].submit();
 }

 a href= onClick=send('logon.do'); return false img
 scr=image.gif/a

-- 
Cheers,

Yee Keat

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: strut help

2001-12-08 Thread Strichartz, Beth

what is the return false about?
try removing that
a href= onClick=send('logon.do'); return false img
scr=image.gif/a

-Original Message-
From: Kiet Nguyen [mailto:[EMAIL PROTECTED]]
Sent: Saturday, December 08, 2001 2:42 PM
To: '[EMAIL PROTECTED]'; Struts-User (E-mail)
Subject: strut help


Please help.  I'm in a dead-end.

I need to write the submit button with an image and a pop-up dialog and it
will work under
netscape 4.7  IE  net6 when the browser is set never check for new
version for page as the caching technique.  I use javascript to submit the
form, but when caching is set, the form doesn't get submit.

Javascript:
function send(msgAction)
{   document.forms[0].action = msgAction;
document.forms[0].submit();
}

a href= onClick=send('logon.do'); return false img
scr=image.gif/a






--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]


This message contains information which may be confidential and privileged.
Unless you are the addressee  (or authorized to receive for the addressee),
you may not use, copy or disclose to anyone the message or any information
contained in the message.  If you have received the message in error, please
advise the sender by reply e-mail, and delete or destroy the message. 

Thank you.


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: strut help

2001-12-08 Thread Kiet Nguyen

The return specified not forward to the href.

If I use the image tag and the onSubmit javascript, how do I identify
which image was click.  I can do my submit base on which button is click.

thanks

-Original Message-
From: Strichartz, Beth [mailto:[EMAIL PROTECTED]]
Sent: Saturday, December 08, 2001 12:37 PM
To: Struts Users Mailing List
Subject: RE: strut help


what is the return false about?
try removing that
a href= onClick=send('logon.do'); return false img
scr=image.gif/a

-Original Message-
From: Kiet Nguyen [mailto:[EMAIL PROTECTED]]
Sent: Saturday, December 08, 2001 2:42 PM
To: '[EMAIL PROTECTED]'; Struts-User (E-mail)
Subject: strut help


Please help.  I'm in a dead-end.

I need to write the submit button with an image and a pop-up dialog and it
will work under
netscape 4.7  IE  net6 when the browser is set never check for new
version for page as the caching technique.  I use javascript to submit the
form, but when caching is set, the form doesn't get submit.

Javascript:
function send(msgAction)
{   document.forms[0].action = msgAction;
document.forms[0].submit();
}

a href= onClick=send('logon.do'); return false img
scr=image.gif/a






--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]


This message contains information which may be confidential and privileged.
Unless you are the addressee  (or authorized to receive for the addressee),
you may not use, copy or disclose to anyone the message or any information
contained in the message.  If you have received the message in error, please
advise the sender by reply e-mail, and delete or destroy the message. 

Thank you.


--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: strut help

2001-12-08 Thread Amjad Ashkar

Why don't you just use the input type=image
src=whatever.gif and set the form action=/logon.do

good luck,
--- Strichartz, Beth [EMAIL PROTECTED]
wrote:
 what is the return false about?
 try removing that
 a href= onClick=send('logon.do'); return false
 img
 scr=image.gif/a
 
 -Original Message-
 From: Kiet Nguyen [mailto:[EMAIL PROTECTED]]
 Sent: Saturday, December 08, 2001 2:42 PM
 To: '[EMAIL PROTECTED]'; Struts-User (E-mail)
 Subject: strut help
 
 
 Please help.  I'm in a dead-end.
 
 I need to write the submit button with an image and
 a pop-up dialog and it
 will work under
 netscape 4.7  IE  net6 when the browser is set
 never check for new
 version for page as the caching technique.  I use
 javascript to submit the
 form, but when caching is set, the form doesn't get
 submit.
 
 Javascript:
 function send(msgAction)
 { document.forms[0].action = msgAction;
   document.forms[0].submit();
 }
 
 a href= onClick=send('logon.do'); return false
 img
 scr=image.gif/a
 
 
 
 
 
 
 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 
 This message contains information which may be
 confidential and privileged.
 Unless you are the addressee  (or authorized to
 receive for the addressee),
 you may not use, copy or disclose to anyone the
 message or any information
 contained in the message.  If you have received the
 message in error, please
 advise the sender by reply e-mail, and delete or
 destroy the message. 
 
 Thank you.
 
 
 --
 To unsubscribe, e-mail:  
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 
 


__
Do You Yahoo!?
Send your FREE holiday greetings online!
http://greetings.yahoo.com

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: strut help

2001-12-08 Thread Kiet Nguyen

I can't because I have 3 actions on that page (insert, add, delete).  I need
to be able to change the action.

thanks.

-Original Message-
From: Amjad Ashkar [mailto:[EMAIL PROTECTED]]
Sent: Saturday, December 08, 2001 12:45 PM
To: Struts Users Mailing List
Subject: RE: strut help


Why don't you just use the input type=image
src=whatever.gif and set the form action=/logon.do

good luck,
--- Strichartz, Beth [EMAIL PROTECTED]
wrote:
 what is the return false about?
 try removing that
 a href= onClick=send('logon.do'); return false
 img
 scr=image.gif/a
 
 -Original Message-
 From: Kiet Nguyen [mailto:[EMAIL PROTECTED]]
 Sent: Saturday, December 08, 2001 2:42 PM
 To: '[EMAIL PROTECTED]'; Struts-User (E-mail)
 Subject: strut help
 
 
 Please help.  I'm in a dead-end.
 
 I need to write the submit button with an image and
 a pop-up dialog and it
 will work under
 netscape 4.7  IE  net6 when the browser is set
 never check for new
 version for page as the caching technique.  I use
 javascript to submit the
 form, but when caching is set, the form doesn't get
 submit.
 
 Javascript:
 function send(msgAction)
 { document.forms[0].action = msgAction;
   document.forms[0].submit();
 }
 
 a href= onClick=send('logon.do'); return false
 img
 scr=image.gif/a
 
 
 
 
 
 
 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 
 This message contains information which may be
 confidential and privileged.
 Unless you are the addressee  (or authorized to
 receive for the addressee),
 you may not use, copy or disclose to anyone the
 message or any information
 contained in the message.  If you have received the
 message in error, please
 advise the sender by reply e-mail, and delete or
 destroy the message. 
 
 Thank you.
 
 
 --
 To unsubscribe, e-mail:  
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 
 


__
Do You Yahoo!?
Send your FREE holiday greetings online!
http://greetings.yahoo.com

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]