Combobox Readonly with nested bean

Hello,

When I bind a combobox to a nested bean property, the combobox becomes readonly.
Even trying to force it with setReadOnly(false) does not work.
If I bind it to a property of the composite bean instead, then the combobox works fine.

Isn’t there any way around this?

Thank you.

Hi,

I found the problem, it was a dumb mistake. In case it’s of use to someone else:

The nested bean property was called id, and I had declared the set method as setID, instead of setId.