Re: Submit button with no form

2008-09-12 Thread oscar perez
another alternative would be to use a normal anchor tag and via CSS to make
it look like a button..

On Wed, Sep 10, 2008 at 3:47 PM, Dan [EMAIL PROTECTED] wrote:

 Lukasz Lenart escribió:

 As Don said, implement small form, only with submit button and you
 wouldn't have to use JavaScript.


 Regards


 OK, I´ll try to do it

 Regards


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




Re: Submit button with no form

2008-09-10 Thread Dan

Lukasz Lenart escribió:

As Don said, implement small form, only with submit button and you
wouldn't have to use JavaScript.


Regards
  

OK, I´ll try to do it

Regards

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



Re: Submit button with no form

2008-09-08 Thread Lukasz Lenart
Hi,

You can use JavaScript and onclick event:

input type=button value=Go onclick=JavaScript:
window.location='myaction.do?do=someMethod'/


Regards
-- 
Lukasz
http://www.lenart.org.pl/

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



Re: Submit button with no form

2008-09-08 Thread Dan

Lukasz Lenart escribió:

Hi,

You can use JavaScript and onclick event:

input type=button value=Go onclick=JavaScript:
window.location='myaction.do?do=someMethod'/


Regards
  

Hi,

Is there any other option instead of using Javascript? I have googled 
but didnt find any answers.


Thanks in advance,


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



Re: Submit button with no form

2008-09-08 Thread paul wisehart

Dan wrote:
Is there any other option instead of using Javascript? I have googled 
but didnt find any answers.




flash ? maybe some applet trickery? what's wrong with a form?
--paul


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



Re: Submit button with no form

2008-09-08 Thread Lukasz Lenart
As Don said, implement small form, only with submit button and you
wouldn't have to use JavaScript.


Regards
-- 
Lukasz
http://www.lenart.org.pl/

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



Submit button with no form

2008-09-05 Thread danipruebas
Hi,

 How can I render a button in a jsp page to call an action directly with no 
form? I just want to call an action from a button in a jsp page, no links.
I will use Dispatch_Action so how should I name it in the strus-config file? I 
understand Dispatch Action theory ;)
Any ideas would be appreciated.

Thanks in advance,