I have an HtmlInputTextArea. It has as value a property of an object of an
arrayList.
<h:inputTextarea cols="30" binding="#{translationsBean.inputCountry}"
immediate="false" value="#{translation.localTranslation}">
Is it possible *through binding* of the component...
public HtmlInputTextarea getInputCountry() {
return inputCountry;
}
public void setInputCountry(HtmlInputTextarea inputCountry) {
this.inputCountry = inputCountry;
}
to retrieve at runtime the corresponding backed object. Something like:
inputCountry.getBackingBeanObject
Thanks