Hi Konstantin,
I think I found the issue.
I am using postgresql for main and also for additional DBs.
And, like in the application settings where JMIX is creating character varying columns,
I also use that type in own entities.
When you try to save an empty string like ‘’ it will end in doing nothing.
Looks like Postgresql character varying needs NULL to empty a column when saving.
Could you tell me how to handle that in JMIX?
… just checked the beforeCommit listener…
that one is also not fired when I just empty a column in the detail view …
which means I cannot use a listener for an interim solution
… and also tried to use setValue(null) in the controller, but then I get the Null value is not supported error…
actually I do not see any workaround when using JMIX 2.1 with Postgresql character varying column types…
which is a blocker for my environment
KR
Roland