gpt4 book ai didi

javascript - 在 handson 表动态列中仅在一行中显示文本后跟 ...

转载 作者:太空宇宙 更新时间:2023-11-04 01:43:52 25 4
gpt4 key购买 nike

在我的 handSon 表中,我只想在一行中显示文本,之后应该有 ...,如果有更多文本。

$scope.textRenderer = function (instance, td, row, col, prop, value, cellProperties) {
if (cellProperties) {

var template;
template = ['<span style="white-space:nowrap; overflow:hidden;text-overflow: ellipsis;">' + value + '</span>'].join('');
while (td.firstChild) {
td.removeChild(td.firstChild);
}

if (!td.firstChild) {
td.appendChild($compile(template)($scope)[0]);
}
}
return td;
};

我试过上面的代码,但是没有显示省略号。

最佳答案

您尝试执行的操作不适用于 inline 元素。

给你的span标签display:block;

关于javascript - 在 handson 表动态列中仅在一行中显示文本后跟 ...,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44902718/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com