Hi there,

 

I am quite new to JSP and struts. So - as I suppose - quite "lame" question
;-)

In order to implement bread crumbs feature I have a collection bean,
containing simple PathElement objects in request scope. Each PathElement
contains two attributes:

-          titleKey (for resource key containing path element's title)

-          actionUri (with action to certain place in my app, like
"/doSomething.do")

 

And now I am trying to do something like this on my JSP page:

 

<logic:iterate id="element" name="PATH_ELEMENTS">

<html:link>

<bean:message name="element" property="titleKey"/>

</html:link>

</logic:iterate>

 

How can I force <html:link> tag to take action from bean?

 

THX

Reply via email to