. , ajax (, @form), . , <title> <h:form> "" (, h:panelGroup, ) :
<h:form id="titleForm">
<title>#{fooBean.fooTitle}</title>
</h:form>
ajax update, . :
<h:commandButton immediate="true" value="Change title">
<f:ajax event="click" render=":titleForm" listener="#{fooBean.changeTitle}"/>
</h:commandButton>
Bean:
private String fooTitle;
public void changeTitle() {
this.fooTitle= "updatedTitle";
}
, , . , title <h:form id="...">, ajax.