我正在尝试使用mui-datatable中的表。它工作正常,但是当我尝试选择复选框之外的行时,它不起作用。我需要它像材料设计中的表格一样工作。
我看到他们具有选择行的功能,并且它可以在控制台模式下工作,所以...我需要将代码放入其中并将行添加到所选行中。
const columns = ["Id","Description"];
const options = {
filterType: 'checkbox',
responsive: 'scroll',
onRowClick: (rowData, rowState) => {
//What can I add here?
console.log(rowData, rowState);
},
};
class PersonList extends React.Component{
state = {
persons: [],
data: [],
};
componentDidMount() {
axios.get(`my url`)
.then(res => {
const persons = res.data;
const data = [];
persons.map(x => data.push({ 'Id': x.id, 'Description' : x.Description}));
this.setState({ data });
})
}
render(){
return(
<Container>
<Page pagetitle="Exemplo" history={this.props.history}>
<MUIDataTable
title={"My Table"}
data={this.state.data}
columns={columns}
options={options}
/>
</Page>
</Container>
)
}}
export default(PersonList);
答案 0 :(得分:2)
selectableRows:true已弃用。请使用 selectableRows:多个|单没有
const options = {
selectableRows:'multiple',
selectableRowsOnClick: true
};
答案 1 :(得分:1)
现在可以使用版本2.4.0
中的主表选项来实现。
const options = {
selectableRows: true,
selectableRowsOnClick: true
};
将selectableRowsOnClick: true
添加到表格选项将允许在行中的任何位置单击以注册为选择操作,就像选中该复选框一样。