jmix-docs icon indicating copy to clipboard operation
jmix-docs copied to clipboard

Warn about need of fonts installation when using Excel export actions

Open yuriy-khrebtov opened this issue 1 year ago • 0 comments

Related issue: https://github.com/jmix-framework/jmix/issues/1107

We need to add warnings that Excel export actions (for data grid and for pivot table) require fonts properly installed on host operating system. One particular case is when Spring Boot bootBuildImage Gradle task is used to automatically generate Docker image without Dockerfile. In this scenario OS from default base image doesn't contain fonts installed. To provide fonts to this OS a developer can, for example, configure bootBuildImage task to use another base image (full):

tasks.named("bootBuildImage") {
    runImage = "paketobuildpacks/run:full"
}

It relates both to 1.x and 2.x framework versions

yuriy-khrebtov avatar Oct 10 '23 09:10 yuriy-khrebtov