Hi!
Is it officially legal to use value-binding in a component, but the related
Backing-Bean does only implement the getter method of the property (for
read-only access), and not the property itself?
This will work fine on an output-only component, such as:
<h:outputText ... value="#{backingBean.myReadOnlyProperty}" ... />
but will cause you grief on an input component, because Update Model Values will not be able to update the backing bean property.
Regards,
Matthias

