Maxim Gorbunkov
Maxim Gorbunkov
Jmix version: 1.3.1 Create new project with business calendars add-on Add any translation Open the business calendar editor AR: day of week names are not translated. ![Screenshot 2022-08-12 at 14...
Currently audit fields added by Studio (lastModifiedDate and createdDate) have `java.util.Date` type. Two concerns about that: 1. The `java.util.Date` is a legacy datatype and it's not a good that we...
It may be an interface that accepts the HttpSecurity object produced by the default auto confiuguration: ```java public interface OAuth2LoginSecurityConfigurer { void configure(HttpSecurity http); } ```
We should add something like this: ```java http.headers(headers -> { headers.frameOptions(frameOptions -> { frameOptions.sameOrigin(); }); }); ```
1. Create Excel report using Wizard (e.g. for User entity) 2. In the excel template add an image. The image must be inside the named region 3. Run the report...
The OIDC documentation says that `security-oauth2-starter` should be removed from the build.gradle. The problem is that this starter is added automatically when REST API addon is added using Studio. We...
It seems that one of our minor issues has been fixed there: https://github.com/jmix-framework/jmix/issues/396
We have two options here: 1. Implement dynamic attributes support in Search add-on 2. Provide a sample that demonstrates how to hook into indexing and searching in order to support...