이것을 고려하십시오 example. 다음 줄이 있습니다 :aikau의 AlfDocumentListView에 목록 헤더를 추가하는 방법은 무엇입니까?
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
에 무엇을 추가해야합니까?
표 셀 헤더가없는 문서 목록을 말하고 싶습니까? –