We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
希望Table 可以增加 一个API,接受一个返回包含 _checked 和 _disabled参数的object 的方法 getDataSelections={(record) => { return { _checked: record.checked, _disabled: record.disabled } }} table内部在进行数据遍历的时候,将使用此方法获取的对象来进行选中,禁用等设置, 这样就不需要用户现在外面遍历一遍数据,设置_checked,_disabled,传入table,让后table再进行遍历
getDataSelections={(record) => { return { _checked: record.checked, _disabled: record.disabled } }}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
希望Table 可以增加 一个API,接受一个返回包含 _checked 和 _disabled参数的object 的方法
getDataSelections={(record) => { return { _checked: record.checked, _disabled: record.disabled } }}
table内部在进行数据遍历的时候,将使用此方法获取的对象来进行选中,禁用等设置,
这样就不需要用户现在外面遍历一遍数据,设置_checked,_disabled,传入table,让后table再进行遍历
The text was updated successfully, but these errors were encountered: