为每行添加一个复选框 - 显示列标记

时间:2015-09-15 20:24:41

标签: jsp

我想在每行的开头添加一个复选框。我尝试添加它但不起作用。

任何人都可以帮忙。

<display:table decorator="com.Decorator" sort="external" style="text-align:left">
    <display:column property='checkbox' name='selectall'/>
    <display:column property="Address" title="Address" sortable="false" headerClass="sortable" style="min-width:80px"/>
    <display:column property="Name" title="Name" sortable="false" headerClass="sortable" style="min-width:120px"/>
    <display:column property="status" title="Status" sortable="false" headerClass="sortable" style="min-width:80px"/>
</display:table>

1 个答案:

答案 0 :(得分:2)

尝试更改为

<display:column style="min-width:20px">
    <input type="checkbox" /> 
</display:column>