Re: JSP expressions inside custom tags

2001-06-09 Thread Craig R. McClanahan
On Fri, 8 Jun 2001, Erich Meier wrote: Hi! I am evaluating struts for a new project. One problem I wasn't able to solve was the integration of JSP expressions inside the attributes of custom tags. My code looks like this: logic:iterate id=pelement name=MyBean property=pelements %

JSP expressions inside custom tags

2001-06-08 Thread Erich Meier
Hi! I am evaluating struts for a new project. One problem I wasn't able to solve was the integration of JSP expressions inside the attributes of custom tags. My code looks like this: logic:iterate id=pelement name=MyBean property=pelements % String name = ((PElement)pelement).getName(); %

Re: JSP expressions inside custom tags

2001-06-08 Thread Jim Richards
try html:link href=%= \/\ + name + \/index.jsp\ % You need to have the %= % present the whole string, not just the single part. At 10:56 AM 8/06/01 +0200, you wrote: Hi! I am evaluating struts for a new project. One problem I wasn't able to solve was the integration of JSP

Re: JSP expressions inside custom tags

2001-06-08 Thread Oleg V Alexeev
Hello Erich, Friday, June 08, 2001, 12:56:42 PM, you wrote: EM My code looks like this: EM logic:iterate id=pelement name=MyBean property=pelements EM % String name = ((PElement)pelement).getName(); % EM html:link href=/%= name %/index.jsp EM^^^ Here is my