Open ASchmidt84 opened 4 years ago
Hi, first of all usage of the Expression Language should be only used for reading values. There for if the expression lead to an exception, there will be a problem. A solution can be a NULL safe method on your PatientView. My personal workaround when using optional class data to edit is to use two adapters, with the dependent view is only shown, when there is an address in your case. The Framework does not create a new PostalAddress if you use a binding path for an optional value of None.
Hope this help,
Greetings Tom
Hi Tom, okay understand. I will create special classes without none. 👍
Another question. If I using a combobox for (example) Countries. How I can use BeanAdapter?
Thank you
Hi,
I have a little problem and I missing an example for that.
I have a case class like this:
And a Textfield and a binding like this:
this will lead in an exception! Of course it is None. When I add a StringConverter like this
will lead in an exception like this
How I can access an none and also set an Some on change?