0

考虑这个例子。它有以下几行:

var views = [
   {
      name: "alfresco/documentlibrary/views/AlfDocumentListView",
      config: {
         widgets: [
            {
               id: "VIEW_ROW",
               name: "alfresco/documentlibrary/views/layouts/Row",
               config: {
                  widgets: [
                     {
                        name: "alfresco/documentlibrary/views/layouts/Cell",
                        config: {
                           widgets: [
                              {
                                 id: "DATA_LIST_TITLE",
                                 name: "alfresco/renderers/Property",
                                 config: {
                                    propertyToRender: "title"
                                 }
                              }
                           ]
                        }
                     }
                  ]
               }
            }
         ]
      }
   }
];

这仅显示数据列表,但没有任何标题。添加什么AlfDocumentListView使其显示标题?

4

1 回答 1

0

我建议您阅读 GitHub 上的 Aikau 教程(请参阅https://github.com/Alfresco/Aikau/blob/develop/tutorial/chapters/About.md)我想您会发现它有很多关于 Aikau 的信息比官方文档更有用。您的具体问题的答案实际上在本教程的第 10 章中得到解决:https ://github.com/Alfresco/Aikau/blob/develop/tutorial/chapters/Tutorial10.md

我还建议您利用 Alfresco 社区平台 ( https://community.alfresco.com/ ),因为它在 Aikau 相关问题上拥有更多的受众,因此您可能会比在 StackOverflow 上获得更多的响应。我还建议您查看我在 Aikau ( https://community.alfresco.com/community/ecm/blog/authors/ddraper ) 上写的许多博客文章,因为您可能会发现它们包含很多有用的信息

于 2016-12-05T11:57:26.523 回答