hi all
i am using myfaces-tomahawk 1.1.5 and sandbox 1.1.5.
i have trouble with updating the value for outputText with subForm.

my jsf-page:
<s:subForm>
<h:outputText value="#{wsRegio.meldung}" />
<t:commandButton actionListener="#{userInputParams.rechne}" immediate="true"
value="Regio" />
<t:outputText value="#{wsRegio.meldung}" />
</s:subForm>

my backing bean:

>>WsRegio:<<
public java.lang.String getMeldung() {
return meldung;
}

public void setMeldung(java.lang.String meldung) {
this.meldung = meldung;
System.out.println("changed: " + meldung);
}

if i start the web-app and click the button the new value is show on the
console throw sysout, but the value is not changing in outputText -
component.

best regards
mathias °ö°
-- 
View this message in context: 
http://www.nabble.com/subForm-and-outputText-tf3053583.html#a8488400
Sent from the MyFaces - Users mailing list archive at Nabble.com.

Reply via email to