React MaterialTable内联复选框选择事件

时间:2019-11-07 09:33:45

标签: javascript reactjs checkbox material-design

属性{selection:true}包括我的MaterialTable复选框,而不是在单独的Table单元格中

我想添加checkchange事件,我尝试在options数组以及外部选项中添加Onchange事件。但这不会绑定事件

<MaterialTable

      title="Contact List"
      columns={columns}
        data={filteredData}
      options={{
        selection: true,
        actionsColumnIndex: -1
       //onChange ---> not working here
        }}
        onChange= {this.checkchange} ---> not working here either
    />

在检查事件上是否有其他方法可以绑定复选框

0 个答案:

没有答案