Excel Download
The Excel Download module integrates with the Wicket Viewer to allow any collection to be downloaded as an Excel spreadsheet.
Configuration
Add the following dependency:
pom.xml
<dependency>
<groupId>org.apache.isis.extensions</groupId>
<artifactId>isis-extensions-exceldownload-wicket-ui</artifactId>
</dependency>
Also add the following module to your AppManifest
:
AppManifest.java
@Configuration
@Import({
IsisModuleExtExcelDownloadWicketUi.class,
...
})
public class AppManifest {
}