JSP tag in a tag

2004-09-03 Thread Dean A. Hoover
I'm using JSTL and struts and I'm not sure how to stuff an fmt:message into an html:link Here's the partial JSP: html:link href=/EditAttachment.do?op=delid=${item.id} onmouseover=ddrivetip('fmt:message key=editEmail.tooltip.deleteAttachment/'); onmouseout=hideddrivetip();fmt:message

Re: JSP tag in a tag

2004-09-03 Thread Bill Siggelkow
You are on the right track, Dean. Do something like the following: bean:define id=mouseOver ddrivetip('fmt:message key=editEmail.tooltip.deleteAttachment/'); /bean:define html:link href=/EditAttachment.do?op=delid=${item.id} onmouseover=${mouseOver} onmouseout=hideddrivetip();

Re: JSP tag in a tag

2004-09-03 Thread Dean A. Hoover
Thanks. Is that equivalent to: c:set var=mouseOver ddrivetip('fmt:message key=editEmail.tooltip.deleteAttachment/'); /c:set ?? Dean Hoover Bill Siggelkow wrote: You are on the right track, Dean. Do something like the following: bean:define id=mouseOver ddrivetip('fmt:message

Re: JSP tag in a tag

2004-09-03 Thread Bill Siggelkow
Essentially -- the c:set so tag does not create a scripting variable like the bean:define tag -- not an issue for you since you it looks like you're using the html-el tags. Bill Siggelkow Dean A. Hoover wrote: Thanks. Is that equivalent to: c:set var=mouseOver ddrivetip('fmt:message