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
3.7.0_all
在列配置resizable: true时,如果跟表尾合计进行联动使用,列宽改变时, 表尾合计的列宽没有同步改变
The text was updated successfully, but these errors were encountered:
zy
Sorry, something went wrong.
已修复,下一版本发布。
你本地可在 src/components/Table/src/BasicTable.vue 文件按如下修改:
// update-begin--author:liaozhiyang---date:20240902---for:[issues/7101] 列配置resizable: true时,表尾合计的列宽没有同步改变 const columns = getColumns(); const findItem = columns.find((item) => { if (item['dataIndex'] != null) { return item['dataIndex'] === col['dataIndex']; } else if (item['flag'] != null) { return item['flag'] === col['flag']; } return false; }); if (findItem) { findItem.width = w; setColumns(columns); } // update-end--author:liaozhiyang---date:20240902---for:[issues/7101] 列配置resizable: true时,表尾合计的列宽没有同步改变 console.log('col',col); col.width = w;
70607db
No branches or pull requests
版本号:
3.7.0_all
问题描述:
在列配置resizable: true时,如果跟表尾合计进行联动使用,列宽改变时, 表尾合计的列宽没有同步改变
错误截图:
友情提示:
The text was updated successfully, but these errors were encountered: