如何为每一行记录增加一个操作button?
gavin213
2007-08-30
请教各位如何为每行记录增加一个操作button?就是增加一列按钮,就像选取记录的checkbox
|
|
haibufuhui
2007-08-31
<ec:column title="" cell="checkbox" headerCell="checkbox" alias="box"value="${c.id}" width="20" viewsAllowed="html" />
|
|
gavin213
2007-09-06
haibufuhui 写道 <ec:column title="" cell="checkbox" headerCell="checkbox" alias="box"value="${c.id}" width="20" viewsAllowed="html" />
增加一button列,如何写?checkbox cell 是源代码有提供,如果是button呢? 下面是我的代码: <ec:column property="" title="操作区" filterable="false" sortable="false" viewsAllowed="html" width="50" > <input type="button" name="btn" value="删除" style="padding:0px;margin:0px;height:20px;maxWidth:40px" onclick="deleteUser(${recond.id})" /> </ec:column> 可property如何设置?为空和其他property都会报错! |
|
Cecily
2007-09-07
你随便写一个存在的properties就可以吧 我记得是这样的 晚上回去再帮你看下啊 记不住了
|
|
pn2006
2007-09-08
<ec:column property="_0" title="操作区" filterable="false" sortable="false"
viewsAllowed="html" width="50" > <input type="button" name="btn" value="删除" style="padding:0px;margin:0px;height:20px;maxWidth:40px" onclick="deleteUser(${recond.id})" /> </ec:column> |