我目前正在使用React-Table,它运行良好。
我想根据表中过滤的数据有一个动态的pageSize 。
<ReactTable
...
filtered={[{
"id": "stage",
"value": 1
}]}
getTdProps={(state, rowInfo, column, instance) => {
return {
onClick: () =>
this.setState({
preliminary:state.sortedData.length
})
};
}}
pageSize={this.state.preliminary}
/>
我在构造函数中的状态
this.state = {
preliminary: 10
};
由于该onClick()
事件,这在单击时效果很好。我希望它触发onLoad()
页面。更改onClick()
为onLoad()
没有任何作用。
任何帮助表示赞赏!