Hi, All:
Using displayTag, I want to add Link to one column while summing the same column. yes, the first time, I gave try to the "href" as the tutorial told, but it does not work because my link is a compound one, like "/userDetail.html?name=${person.name}&age=${person.age}".
Yes, it would be like below, if only the Link is what I want:
Hi, All:
Using displayTag, I want to add Link to one column while summing the same column. yes, the first time, I gave try to the "href" as the tutorial told, but it does not work because my link is a compound one, like "/userDetail.html?name=${person.name}&age=${person.age}".
Yes, it would be like below, if only the Link is what I want:
<display:column ..... >
<a href = "userDetail.html?name=${person.name}&age=${person.age}" > ${person.score} </a>
</display:column>
but at the same time, I want to get the total score for the persons displayed in the table.
so I try the following way:
<display:column property = "score" total = "true" />
So, how could I combine summing and linking together? decorator?
Any suggestion would be appreciated. Thanks in advance!