I have a "String[]
selectedItems" defined in my form bean that will hold ids checked in the jsp
page. I also have a <a href="" tag in my list.jsp that has dynamic
link values to go to detail.jsp. How do I convert these two into
<display:column>? (I just want to utilize your paging and sort
features.)
My original code in
jsp iterate through a list bean is as follows:
<logic:notEmpty
name="task_list">
<logic:iterate
id="tlist" name="task_list">
<tr>
<td
width="25" class="blueborder">
<html:multibox
property="selectedItems">
<bean:write name="tlist"
property="tscTaskId"/>
</html:multibox>
</td>
<td width="75"
class="blueborder"><bean:write name="tlist"
property="tscTaskId"/></td>
<td
class="blueborder"><bean:write name="tlist"
property="taskDesc"/> </td>
<td width="80">
<a class="linkAsbutton" href="">Modify</a>
</td>
</tr></logic:iterate></logic:notEmpty>
Appreciatively,
Irene Lee

