ElemeFE / element-react

Element UI
https://elemefe.github.io/element-react/index
MIT License
2.83k stars 443 forks source link

toggleRowSelection好像最多只能设置一个选定状态? #940

Open hoifong opened 5 years ago

Emiya0306 commented 5 years ago

+1,是react setState异步更新的问题,等PR进去就好了。 目前我项目里快速fix的方案是调用toggleRowSelection的时候走一步setTimeout,让组件走完渲染周期后,再toggleRowSelection。

for(const item of data) {
  setTimeout(() => {
    this.ref['table'].toggleRowSelection(item);
  });
}