What I meant is can I pass the table, tableBusinessName and errorCount values to the hyperlink.
With paramXX attributes, I can only pass one parameter but I want to pass more than one parameters...
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Can someone show me how to pass object of the current row to the "/processTable.do" url specified below:
<display:table name="${defectDetails}" id="defect" class="ApptableDisplayTag">
<display:column property="table" title="Table" url="/processTable.do"/>
<display:column property="tableBusinessName" title="Table Business Name"/>
<display:column property="errorCount" title="Defect Count"/>
</display:table>
TIA
What I meant is can I pass the table, tableBusinessName and errorCount values to the hyperlink.
With paramXX attributes, I can only pass one parameter but I want to pass more than one parameters...
hello,
just do that:
<display:table name="${defectDetails}" id="defect" class="ApptableDisplayTag">
<display:column property="table" title="Table" >
processTable.do?tableBusinessName=<c:out value="${defect.tableBusinessName}" />
&errorCount=<c:out value="${defect.errorCount}" />
</display:column>
<display:column property="tableBusinessName" title="Table Business Name"/>
<display:column property="errorCount" title="Defect Count"/>
</display:table>