Consider this example. It has the following lines:
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"
}
}
]
}
}
]
}
}
]
}
}
];
This show just list of data, but without any headers.
What to add to AlfDocumentListView
to make it show headers?