Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Is "outputTexts" and "outputTextarea" typos? You mean to say "inputTexts" and "inputTextarea", correct? – Shredder Feb 29 '12 at 19:02

1 Answer

up vote 0 down vote accepted

I found a solution. I'm not sure if it's a good one or if it could be done in another way, if you know, please let me know, but here's how I fixed it:

My JSF page:

[...]
<h:form id="editform" 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 id="textboxParent" value="#{faseController.selectedFase.titel}" />
        <br />
        <ui:repeat value="#{faseController.selectedFase.subItems}" var="subfase">
            <h:inputTextarea value="#{subfase.titel}" />
        </ui:repeat>
    </fieldset>
</h:form>
[...]

I added id's to the form and the textbox that was acting up. And then I added the following piece of code in #{faseController.prepareEditView} :

[...]
UIInput input = (UIInput) FacesContext.getCurrentInstance().getViewRoot().findComponent("editform:textBoxParent");
input.setValue(selectedFase.getTitel());
input.setSubmittedValue(null);
[...]

This forced the inputtextarea to display the text I wanted.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.