0

In my controller, I fill a list in the property "items" and I render the list.jsp.

list.jsp

<jsp:include page="_list.jsp">
    <jsp:param value="${items}" name="items"/>
</jsp:include>

_list.jsp

<display:table name="${param.items}">               
    <display:column property="code" sortable="true"/>               
</display:table>

Nothing found/display! But when I write:

param.items = ${param.items}

I see the all items present in the list! How can I use page's parameter in the display table tag?

4

1 回答 1

0

尝试<display:table name="items">

于 2013-07-05T14:35:12.780 回答