I seem to have an issue with the jsf components inputText and inputTextarea. They do not show the value that my backend holds. I am 100% certain that the backend has those values and I even tried outputting it with an outputLabel and the outputlabel shows the value the outputTexts didn't want to show.
My Jsf page:
[...]
<h:form rendered="#{gvpController.logInBean.gvpView}">
<fieldset>
<h3>Wijzig een titel</h3>
<label>
<span>Titel:</span>
<h:selectOneMenu value="#{faseController.selectedFase.parent_id}" valueChangeListener="#{faseController.prepareEditView}" onchange="submit()" immediate="true">
<f:selectItems value="#{faseController.fasesAsSelectItems}" />
</h:selectOneMenu><br />
</label>
<h:inputTextarea value="#{faseController.selectedFase.titel}" />
<br />
<ui:repeat value="#{faseController.selectedFase.subItems}" var="subfase">
<h:inputTextarea value="#{subfase.titel}" />
</ui:repeat>
</fieldset>
</h:form>
[...]
The odd thing is that it's only the first outputTextarea that isn't showing its value. The outputTextarea's inside the ui:repeat show the correct values.
Thanks.