I have the following select list in jsp:
<td>
<s:select list = "models"
listValue = "modelName"
listKey = "modelId"
multiple = "true"
name = "models" />
</td>
I decided to implement pagination using the library display Tag, so I want to convert it to a display column and show one or more models from the list. How can i do this? Below is a mapping table with other columns:
<display:table name = "cars"
requestURI = "/listCar.action"
pagesize = "10">
<display:column property = "name" title = "name" />
<display:column titleKey = "models" >
</display:column>
<display:column property = "year" title = "year" />
</display:table>
source
share