Is there a way to set a single property of a property in a bean?
For example, I have an Employee class as a property in my bean UserAttributeView
and I want to set employeeName property from JSF using c:set
tag.
<c:set value="#{item}" target="#{UserAttributeView}" property="????" />