Customization Guide

Customize the Webapp

The module fscd-adapter-web provides the UI that consists of several views (think "pages"). Views can be customized by defining ViewCustomizers in your project:

@Component
public class PolicyDocumentViewCustomizer implements ViewCustomizer<PolicyDocumentView> {
    @Override
    public void postCreateContent(PolicyDocumentView view, BeforeEnterEvent event) {
        var layout = (VerticalLayout)view.getComponentAt(0);
        layout.add(new MySection());
    }
}

In case view customizers are not suitable for your requirement, please contact the Faktor Zehn product development.