|
Please
ignore my message. I must be getting tired and am not watching that I’m
setting both ArrayLists under the same name. I
know I’ve seen this one in the archives before but I can’t find the
answer. I
need to display two tables on the same page and I ALWAYS keep getting the first
table displayed twice. Here
is what I have:
<div class="tableLabel">Your Assigned Issues:</div><hr>
<div align="center">
<display:table name="requestScope.USER_ISSUES"
class="simple">
<display:column property="issueId"
title="Change"
nowrap="true" align="center"
/>
<display:column property="issueDescShort"
title="Description"
maxLength="50" nowrap="true"/>
<display:column property="versionName"
title="Version"
nowrap="true"/>
<display:column property="projectName"
title="Project"
nowrap="true"/>
<display:column property="qaStatus"
title="QA
Status" nowrap="true"/>
<display:column property="developmentStatus"
title="Dev
Status" nowrap="true"/>
<display:column property="updatedBy"
title="Updated
By" nowrap="true"/>
<display:column property="updatedOn"
title="Updated
On" nowrap="true"/>
</display:table>
</div>
<br>
<div class="tableLabel">Current Unassigned
Issues:</div><hr>
<div align="center">
<display:table name="requestScope.UNASSIGNED_ISSUES"
class="simple">
<display:column property="issueId"
title="Change"
nowrap="true" align="center"/>
<display:column property="issueDescShort"
title="Description"
maxLength="50" nowrap="true"/>
<display:column property="versionName"
title="Version"
nowrap="true"/>
<display:column property="projectName"
title="Project"
nowrap="true"/>
<display:column property="qaStatus"
title="QA
Status" nowrap="true"/>
<display:column property="developmentStatus"
title="Dev
Status" nowrap="true"/>
<display:column property="updatedBy"
title="Updated
By" nowrap="true"/>
<display:column property="updatedOn"
title="Updated
On" nowrap="true"/>
</display:table>
</div> Does this sound familiar to anybody? |

