阅读更多..或更多...链接AlfSortablePaginatedList - 评论专栏

时间:2017-02-13 14:03:31

标签: alfresco alfresco-share aikau

我正在使用AlfSortablePaginatedList来呈现行和列的集合。在其中一个单元格中,我想显示前50或100个字符,带有“more ...”链接文本。如果用户单击更多,则需要显示剩余内容。

类似于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 Alfresco:5.0.2

0 个答案:

没有答案