如何在新列的dc.js数据表中添加带有事件监听器的按钮。
如果可能的话,我基本上想添加自定义html。
答案 0 :(得分:2)
添加按钮仅是为
的列返回html的问题dc.dataTable (dom)
.columns ([function (d) { return "<button>Clickedy click</button>" }])
.on('renderlet', function (graph) {
graph.selectAll('button')
.on('click.clickedy',function(d){
console.log(d);
})
该事件的“ renderlet”或“预转换”,在这种情况下不要紧