其中一列:
{field:'companyName', title: '公司名称', align: 'center',minWidth:200,templet:tplCompanyName}
模板办法:
var tplCompanyName = function (d) {var html = '<a style="color:#1E9FFF"href="javascript:void(0);"lay-event="showRec">'+d.companyName+'</a>';
return html;
}
事件监听:
table.on('tool(myOrdersListTable)', function(obj){switch(obj.event){
case 'showRec':
active.showRec(obj);
break;
}
});
而后定义 active.showRec(obj);
var active = {showRec:function(obj){//...do your things}
}