Assigned: (STR-746) html:link tag extension formultiple parameters
0 answers - 1482 bytes -
[ ] Paul Benedict reassigned STR-746: Assignee: Paul Benedict (was: Struts Developers) Now that the html tags can recognize symbolic action names (STR-2864), any tags which can render a link are much better suited for Struts development than the JSTL <c:urltag. The only thing missing is the equivalent way to add parameters in a nested tag. I've enhanced the <html:linkand <html:rewritetags to accept a new <html:paramtag which adds any *additional* parameters to the parent's parameters. So the old way works, the new way, and both together. <html:link action="editPersonAction" name="moreParamsMap"> <fmt:message key="person.title" /> <html:param name="param1" value="value1" /> <html:param name="param2">value2</html:param> </html:link> [taglib] html:link tag extension for multiple parameters Key: STR-746 URL: Project: Struts 1 Issue Type: Improvement Components: Taglibs Affects Versions: Nightly Build Environment: System: All Platform: All Reporter: Jesse Blomberg Assigned To: Paul Benedict Priority: Minor Fix For: 1.3.6 -- Eric Fesler has an extension to the html:link tag. It allows nested param tags that allow the user to specify multiple parameters appended to the URI without resorting to a map. Hopefully this could be incorporated into the next release of Struts. Thanks, Jesse Blomberg
Re: Assigned: (STR-746) html:link tag extension formultiple parameters