columns : [ [
//......
{ title : ' *** 作', field : 'opt', width : getWidth(0.1), align : 'center', formatter :
function(value, row, index) {
var str = ""
str += '<span class="icon_Modify"><a href="javascript:update(\'' + rec.actTypeId +'\')" title="修改"></a></span>'
str += '<span class="icon_chakan"><a href="javascript:view(\'' + rec.actTypeId + '\')" title="删除"></a></span>'
return str
}
}
] ],
具体样式自己调下,只说下思路
用formatter 举个例子
{ field: 'ed', title: ' *** 作', width: 80, align: 'center',formatter: function (value, rowData, rowIndex) {
return "<input type='button' value='click'>"
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)