In this article
This widget displays all the dashboards the current enduser has access to in the current program (with the same hub id).
Below is an example of the code used to create and set up a Document List widget:
title "my program"
config hub{
hub: 4444 // program hub
}
page #TitlePage {
widget documents {
filter expression {
value: type = "program"
}
// documentTypeToShow: dashboard // Alternative syntax for filters
column documentlink { //new column type to support opening dashboards from the list
label: "Document Name"
formatter:@myFormatter
value: Name
}
column value {
label: "Last modified"
value: LastChanged
}
}
}