You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
xachary
changed the title
关于(#3418)”fix: EditableCell about checked/unChecked Value, getDisable, rowKey“示例补充
关于 Pull Requests #3418 ”fix: EditableCell about checked/unChecked Value, getDisable, rowKey“示例补充
Dec 14, 2023
描述 Bug
使用 EditableCell 遇到以下问题(场景):
1、当 editComponent 为 switch 的时候,设置 editComponentProps 的 checkedValue 和 unCheckedValue 无效。
2、假如存在多列均可以 edit,列A 受 列B 的值影响,列A 在 列B 为某个值的时候应该被禁用,此时 editDynamicDisabled 获得参数 record 中 列B 的值是旧值,没有变化,导致 列A 无法动态变成禁止 edit 状态。
3、禁用状的 EditableCell,”禁用“的表达应该提前,应该不允许点击切换至 editable 状态,无需用表单的禁用表达。
4、table 列设置里没有定义 id 列,在 beforeEditSubmit 返回到 record 中就不存在 id 属性,此时就缺失 id 用于提交表单了。此时可以根据 rowKey,补充至返回到 record 中。
5、使用 render 的时候,例如希望用彩色的 tag 显示记录的状态,此时出现类似上面”2“的情况,如果此记录经过 EditableCell 修改过,返回到 record 的是旧值,无法通过 render 显示最新的状态。
复现 Bug
@wangjue666
The text was updated successfully, but these errors were encountered: