我正在使用 AlfSortablePaginatedList 来呈现一组行和列。在一个单元格中,我想显示前 50 或 100 个字符以及“更多...”链接文本。如果用户点击更多,那么我需要显示剩余的内容。
像,http://jsfiddle.net/X5r8r/1156/
你能告诉我怎么做吗?
这是代码片段。
headerWidgets.push({
name: "alfresco/documentlibrary/views/layouts/HeaderCell",
config: {
label: "Comments",
sortable: false
}
});
rowWidgets.push({
name: "alfresco/documentlibrary/views/layouts/Cell",
config: {
widgets: [{
name: "alfresco/renderers/Property",
config: {
propertyToRender: "Comments",
additionalCssClasses:"limitText"
}
}]
}
});
我添加了自定义 css,以在评论栏中获得“...”,我不确定如何使其可点击并显示剩余内容。
.limitText {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
line-height: 16px; /* fallback */
max-height: 250px; /* fallback */
-webkit-line-clamp: 3; /* number of lines to show */
-webkit-box-orient: vertical;
}
Aikau 版本:1.0.67 露天:5.0.2