Re: [HELP]onchange in the tag

2005-06-10 Thread Woodchuck
hihi Leandro, if you are using Tomcat 5 you should be able to use EL (Laurie's first suggestion)... make sure your web.xml is declared with version 2.4 dtd to have EL on by default. if you don't have EL, you can use the Struts-EL tags which give you the EL support! (these are available in the St

Re: [HELP]onchange in the tag

2005-06-10 Thread Laurie Harper
Leandro_Dorileo/[EMAIL PROTECTED] wrote: onchange="javascript:form.action='value="myFormBean.myProperty"/>';form.submit();"> You can't nest JSP custom tags like that. If you can use JSTL, this will work: If you can't use JSTL you'll have to resort to a runtime expression: HTH, L

Re: [HELP]onchange in the tag

2005-06-10 Thread Martin Gainty
Leandro Read this article about accessing a bean via JavaScript via home interface JNDI name http://docs.jcu.edu.au/pm/manual/bg/ejbscrip.htm#35920 HTH, Martin- - Original Message - From: To: Sent: Friday, June 10, 2005 2:55 PM Subject: [HELP]onchange in the tag Hi all! I have a

[HELP]onchange in the tag

2005-06-10 Thread Leandro_Dorileo/ABACO
Hi all! I have a tag and in the onchange I need pass a little javascript, till here no problem, but, I need put in the middle of this javascript a string from my formbean. I thought some thing like this: ';form.submit();"> But certainly it does not work, but I couldn't thing and find anythi