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
1.6.5
chrome 版本49
https://www.antdv.com/components/table-cn/
{ title: item.title, fixed: item.fixed, dataIndex: item.key, key: item.key, align: item.align, width: item.width == "" ? 100 : parseInt(item.width), sorter: item.sortable, ellipsis: true, className: item.className }
期望 fixed: "left" ,ellipsis: true同时开启时能够自动省略
表格每列给定宽度 width,第一列给了 fixed: "left" ,所有的列开启了ellipsis: true, 第一列没有自动省略 其它列正常 ;第一列浮动的 会自动撑开 超出设定的宽度
The text was updated successfully, but these errors were encountered:
fix: table ellipsis not work at fixed column #2916 #3021
dae7513
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Sorry, something went wrong.
tangjinzhou
No branches or pull requests
Version
1.6.5
Environment
chrome 版本49
Reproduction link
https://www.antdv.com/components/table-cn/
Steps to reproduce
{
title: item.title,
fixed: item.fixed,
dataIndex: item.key,
key: item.key,
align: item.align,
width: item.width == "" ? 100 : parseInt(item.width),
sorter: item.sortable,
ellipsis: true,
className: item.className
}
What is expected?
期望 fixed: "left" ,ellipsis: true同时开启时能够自动省略
What is actually happening?
表格每列给定宽度 width,第一列给了 fixed: "left" ,所有的列开启了ellipsis: true, 第一列没有自动省略 其它列正常 ;第一列浮动的 会自动撑开 超出设定的宽度
The text was updated successfully, but these errors were encountered: