RE: how to Internationalized submit button?

2002-07-19 Thread René Eigenheer
i use different properties for each button: example: if (btnStore != null) { } if (btnCancel != null) { } > -Original Message- > From: Hoang, Hai [mailto:[EMAIL PROTECTED]] > Sent: Freitag, 19. Juli 2002 05:56 > To: '[EMAIL PROTECTED]' > Subject: how to

Re: how to Internationalized submit button?

2002-07-18 Thread Tadashi Ishikawa
You can use hidden field and Javascript. function setAction(target) { document.forms[0].actionName.value=target; } $B!D(B Hoang, Hai wrote: >I want to internationalize the submit buttons on a form and I don't know how >to do it. Currently, I mapped the value on the submit button to

how to Internationalized submit button?

2002-07-18 Thread Hoang, Hai
I want to internationalize the submit buttons on a form and I don't know how to do it. Currently, I mapped the value on the submit button to the property actionName in the ActionForm class. Base on the button the use clicked, I handle it propriately in the Action class, just like event handling