美文网首页
ant 表格内容超出隐藏设置

ant 表格内容超出隐藏设置

作者: LenHong | 来源:发表于2019-08-01 14:02 被阅读0次
{
        title: '备注',
        key: 'remark',
        dataIndex: 'remark',
        width:240,
        render(text) {
          return (
            <Popover content={<div style={{ maxWidth: '240px' }}>{text}</div>} trigger="hover">
              <div
                style={{
                  maxWidth: '240px',
                  overflow: 'hidden',
                  wordBreak: 'keep-all',
                  whiteSpace: 'nowrap',
                  textOverflow: 'ellipsis',
                }}
              >
                {text}
              </div>
            </Popover>
          );
        },
      },

相关文章

网友评论

      本文标题:ant 表格内容超出隐藏设置

      本文链接:https://www.haomeiwen.com/subject/rdmqdctx.html