Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4147151
By: courtenayt

Here is what worked for me.  (Only difference was that I used a function to
hide my creation of the RowSetDynaClass that I called new_ncs) The first column
displays the sfdid value from the RowSetDynaClass and the second column, "View",
is dynamically created - it wasn't in the original RowSetDynaClass, but I used
the c:out function to create the link using the value from the RowSetDynaClass.


<%  
RowSetDynaClass new_ncs = ActionViewTables.newNCTableSC(sdid_string);  
%>  
 
<% request.setAttribute("new_ncs_sc", new_ncs); %>  
 
<display:table name="requestScope.new_ncs_sc.rows" id="row">  
    <display:column property="sfdid" title="ID" sortable="true"/>    
    <display:column title="View"> 
        <a href="../displayView.jsp?sfdid=<c:out 
value="${row.sfdid}"/>">View</a> 
    </display:column>  
</display:table>

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=249318

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
displaytag-user mailing list
displaytag-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to