使用的是jgrid表格,bootstrap页面
{name:'listportDetect',index:'listportDetect', 50,editable: true,formatter: function (cellvalue, options, rowObject) {
var res = "";
if(rowObject.listportDetect){
for(x in rowObject.listportDetect){
if(rowObject.listportDetect[x].status == 1){
// res += "<p><button class='btn btn-xs btn-info'>"+rowObject.listportDetect[x].port+"</button></p>"; //绿色,通
res += "<label title="+rowObject.listportDetect[x].port+' : 可达'+" style='height:30px;150px;background:#90EE90;text-align:center;margin-top:10px;outline:none;color:#FFFFFF;border-0px;border-style:none;border-radius: 10px;'>"+
"<p style='margin-top:4px;'>"+rowObject.listportDetect[x].name+
" "+
"<a href='#modal-portTable' class='tooltip-success' data-rel='tooltip' data-toggle='modal' title='编辑' onclick='editOpenPortDetect(""+rowObject.listportDetect[x].pkid+"",""+rowObject.listportDetect[x].port+"",""+rowObject.listportDetect[x].name+"")'>"+
"<span class='white'>"+
"<i class='icon-edit-sign bigger-140'>"+"</i>"+
"</span></a>"+
" "+
"<i title='删除' class='icon-remove-sign bigger-150' onclick='removePortDetect("+rowObject.listportDetect[x].pkid+")'>"+
"</i></p></label> ";
}
}
}
return res;
}},