Feature Requests item #711071, was opened at 2003-03-27 23:33
Message generated for change (Comment added) made by fgiust
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=536616&aid=711071&group_id=73068

>Category: main taglib
Group: None
>Status: Closed
Resolution: None
Priority: 5
Submitted By: Matthew Payne (sutter2k)
>Assigned to: fabrizio giustina (fgiust)
Summary: href-lists for actions

Initial Comment:
The requirement to write a Wrapper class to implement 
multiple multiple actions a key field is very cumbersome.

It would be extremly helpful if you could put multiple href 
items inside a display:column tag.   Possible example
.......
<display:column property="id" title="Actions">
          <display:item href="edit.jsp" paramId="id" 
paramProperty="id" querystringXtra="blah=5"/>
<display:item href="add.jsp" querystringXtra="blah=3" 
paramId="id" paramProperty="id"/>
<display:item href="remove.jsp" paramId="id" 
paramProperty="id"/>
</display:column> 
......

Thanks, 

Matthew Payne

----------------------------------------------------------------------

>Comment By: fabrizio giustina (fgiust)
Date: 2003-10-12 19:41

Message:
Logged In: YES 
user_id=798060

you can add multiple actions without the needing for a 
decorator in 1.0. Simply include script or other tags (you 
canuse jstl) into the column body

<display:column title="action">
    <a href="delete?id=<%=item.getId()%>">delete</a>
    <a href="edit?id=<%=item.getId()%>">delete</a>
</display:column>

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=536616&aid=711071&group_id=73068


-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
_______________________________________________
displaytag-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/displaytag-devel

Reply via email to