Maxim Gorbunkov

Results 12 comments of Maxim Gorbunkov

It works like it is described in the [documentation](https://doc.cuba-platform.com/manual-6.10/screen_extension.html): > Otherwise, the platform determines how many elements with the provided path and name are contained in the parent descriptor. If...

> they all collapses into one in the result screen description Could you provide an example? I don't get what do you mean by all element collapses into one.

We should do all items except 2 (Not all columns values have localization, e.g. Type, Action, Source)

`MessageBundle` is used in framework screen controllers instead of `messages.getMessage(getClass(), "...)`. In the extended screen you may specify the `messagesGroup` of the parent screen. This should avoid localization problems. ```xml...

For QA: 1. Test how User Sessions screen from Audit add-on works together with Keykloak authentication (it must display user sessions) 2. Check that application property `jmix.core.session.maximum-sessions-per-user` works properly with...

The workaround is to post-process the report using Apache POI that can [evaluate formulas](https://poi.apache.org/components/spreadsheet/eval.html): ```java ReportOutputDocument document = reportRunner.byReportCode("contracts-report") .run(); ByteArrayInputStream bis = new ByteArrayInputStream(document.getContent()); Workbook wb = new XSSFWorkbook(bis);...

See also https://github.com/jmix-framework/jmix/issues/153

We'll need to implement something similar to what has been done in CUBA Gradle plugin (the [issue](https://github.com/cuba-platform/cuba-gradle-plugin/issues/60)). Kotlin and java entities must be enhanced only after both of them are...

It seems that the reason of the exception described in the issue is that main application class is written in Java. If it was in Kotlin the error would not...

Updated dependencies: org.freemarker:freemarker:2.3.16 -> 2.3.32 org.apache.xmlgraphics:fop:2.3 → 2.9 org.apache.xmlgraphics:xmlgraphics-commons:2.3 → 2.9 org.apache.xmlgraphics:batik-bridge:1.10 → 1.17 org.apache.xmlgraphics:batik-svggen:1.10 → 1.17 org.apache.xmlgraphics:batik-awt-util:1.10 → 1.17 org.apache.xmlgraphics:batik-css:1.10 → 1.17 xalan:xalan:2.7.2 → 2.7.3 xalan:serializer:2.7.2 → 2.7.3 org.apache.poi:poi:4.1.1...