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
提问前先看看:
https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md
editable-table列子与formItem结合,使用筛选条件后,编辑出现错乱,显示的是之前第一行的数据。点取消按钮会错乱。 使用分页情况,编辑表格数据也会错乱
官方的:与 FormItem 配合,列的状态字段添加 filters: true, onFilter: (value, record) => record.state?.indexOf(value) == 0, 筛选之后,会出现编辑数据错乱
能正常编辑数据
filters: true, onFilter: (value, record) => record.state?.indexOf(value) == 0,
The text was updated successfully, but these errors were encountered:
No branches or pull requests
提问前先看看:
https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md
🐛 bug 描述
editable-table列子与formItem结合,使用筛选条件后,编辑出现错乱,显示的是之前第一行的数据。点取消按钮会错乱。
使用分页情况,编辑表格数据也会错乱
📷 复现步骤
官方的:与 FormItem 配合,列的状态字段添加
filters: true,
onFilter: (value, record) => record.state?.indexOf(value) == 0,
筛选之后,会出现编辑数据错乱
🏞 期望结果
能正常编辑数据
💻 复现代码
filters: true,
onFilter: (value, record) => record.state?.indexOf(value) == 0,
© 版本信息
🚑 其他信息
The text was updated successfully, but these errors were encountered: