groupRowSelection:any={
type:'checkbox',
onChange:(id:any,list:any)=>{
this.setState({
...this.state,
memberGroupIds: id,
isChange:true,
});
},
getCheckboxProps:(record:any)=>({
defaultChecked: record.isBind ==true,
}),
};
结果报错:
Warning: [antd: Table] Do not set `checked` or `defaultChecked` in `getCheckboxProps`. Please use `selectedRowKeys` instead.
in LocaleReceiver
好像说用selectedRowKeys,用这个怎么解决呢
同疑惑 不知道博主有没有解决