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.causeway.extensions</groupId>
    <artifactId>causeway-extensions-exceldownload-wicket-ui</artifactId>
</dependency>

Also add the following module to your AppManifest:

AppManifest.java
@Configuration
@Import({
        CausewayModuleExtExcelDownloadWicketUi.class,
        ...
})
public class AppManifest {
}