如何在 dc.js table 中添加按钮?

How to add button inside dc.js table?

如何在新列的 dc.js 数据 table 中添加带有事件侦听器的按钮。

如果可能的话,我基本上想添加自定义 html。

添加按钮只是为

的列返回 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' 或 'pretransition' 对于事件,在这种情况下不要认为它很重要