ページはマネージドBeanの適切な値で正しく生成されますが、これらの2つのh:selectOneMenusのajaxイベントは機能しません。リスナーは呼び出されません。エラーはタグ内のどこかにある必要がありますが、表示されません。
<f:view>
<h:form>
<h:messages />
<h:panelGrid columns="3">
<h:outputLabel value="Choose your faculty: *" for="faculties" />
<h:selectOneMenu id="faculties" value="#{registrateStudent.selectedFaculty}" >
<f:ajax event="change" listener="#{registrateStudent.genSpecializations}" execute="faculties" render="specializations" />
<f:selectItems value="#{registrateStudent.listFaculty}" var="curFac" itemLabel="#{curFac.name}" itemValue="#{curFac}" />
</h:selectOneMenu>
<h:message id="message_faculties" for="faculties" />
<h:outputLabel value="Choose your specialization: *" for="specializations" />
<h:selectOneMenu id="specializations" value="#{registrateStudent.selectedSpecialization}" >
<f:selectItems value="#{registrateStudent.listSpecialization}" var="curSpec" itemLabel="#{curSpec.name}" itemValue="#{curSpec}"/>
</h:selectOneMenu>
<h:message id="message_specializations" for="specializations" />
マネージドBean:
@ManagedBean(name = "registrateStudent")
@ViewScoped
public class RegistrateStudent {
private Faculty selectedFaculty;
private List<Faculty> listFaculty;
private Specialization selectedSpecialization;
private List<Specialization> listSpecialization;
private boolean showSpecialization = false;
/** Creates a new instance of RegistrateStudent */
public RegistrateStudent() {
users = new Users();
System.out.println("poaposd1");
student = new Student();
}
@PostConstruct
public void init() {
listFaculty = ff.findAll();
if (listFaculty != null) {
selectedFaculty = listFaculty.get(0);
listSpecialization = sf.findByFaculty(selectedFaculty.getIdFaculty());
if (listSpecialization != null) {
selectedSpecialization = listSpecialization.get(0);
}
else {}
} else {}
}
public void genSpecializations(AjaxBehaviorEvent event) {
if (sf.findByFaculty(selectedFaculty.getIdFaculty()) != null) {
this.showSpecialization = true;
} else {
JsfUtil.addSuccessMessage("faculties", "We don't have specializations for such faculty");
}
}
}
更新:
私はいくつかの興味深いことを見つけました:
<f:ajax>
タグは、<h:link>
、<h:selectOneMenu>
、<h:button>
、<h:commandButton>
では機能しません。この場合、render
属性の誤った値は通知されませんが、event
属性の誤った値はエラーを生成します。
<h:outputLabel>
、<h:inputText>
は<f:ajax>
と適切に連携します
<f:ajax>
を使用するには、HTMLにjsf.js
ファイルを含める必要があります<head>
。 JSF ajaxマジックを実行するためのすべてのJS関数が含まれています。
これを実現するには、マスターテンプレートで<h:head>
ではなく<head>
を使用していることを確認してください。次に、JSFは<script>
を指す必要なjsf.js
要素を自動的にそこに含めます。
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://Java.Sun.com/jsf/core"
xmlns:h="http://Java.Sun.com/jsf/html"
xmlns:ui="http://Java.Sun.com/jsf/facelets">
<h:head>
<title>Look, with h:head</title>
</h:head>
<h:body>
Put your content here.
</h:body>
</html>
Firefoxの Web Developer Toolbar や Firebug のような少しまともなウェブ開発ツールセットを備えた少しまともなウェブブラウザでは、jsf is undefined
のようなJSエラーにすぐに気付くはずです。 ajaxリクエストが実行されます。それは少なくとも考えるべきことを与えているはずです。
Update:更新ごと
私はいくつかの興味深いことを見つけました:
<f:ajax>
タグは、<h:link>
、<h:selectOneMenu>
、<h:button>
、<h:commandButton>
では機能しません。この場合、render
属性の誤った値は通知されませんが、event
属性の誤った値はエラーを生成します。
<h:outputLabel>
、<h:inputText>
は<f:ajax>
で適切に機能します。
<h:link>
と<h:button>
はGETリクエストのみを対象としており、POSTリクエストではありません。ただし、<h:selectOneMenu>
と<h:commandButton>
では問題なく機能するはずです。 。簡単にするために質問から省略した全体像に、より多くのコードがありませんか?どのJSF実装/バージョンを使用していますか?クラスパスで適切なライブラリーを使用していますか?実際に何かを台無しにしているようです。
あなた(そして私自身)を納得させるために、私は次のコピーを作成しました 'n'paste'n'runnable testcase
<!DOCTYPE html>
<html lang="en"
xmlns:h="http://Java.Sun.com/jsf/html"
xmlns:f="http://Java.Sun.com/jsf/core"
xmlns:ui="http://Java.Sun.com/jsf/facelets"
>
<h:head>
<title>SO question 6089924</title>
</h:head>
<h:body>
<h:form>
<h:selectOneMenu value="#{bean.selected}">
<f:selectItem itemValue="#{null}" itemLabel="Select..." />
<f:selectItem itemValue="one" />
<f:selectItem itemValue="two" />
<f:selectItem itemValue="three" />
<f:ajax listener="#{bean.listener}" render="result" />
</h:selectOneMenu>
<h:commandButton value="commandButton" action="#{bean.submit}">
<f:ajax listener="#{bean.listener}" render="result" />
</h:commandButton>
<h:outputText id="result" value="#{bean.selected} #{bean.result}" />
<h:messages />
</h:form>
</h:body>
</html>
この豆と
package com.example;
import Java.io.Serializable;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ViewScoped;
import javax.faces.event.AjaxBehaviorEvent;
@ManagedBean
@ViewScoped
public class Bean implements Serializable {
private String selected;
private String result;
public void submit() {
System.out.println("submit");
}
public void listener(AjaxBehaviorEvent event) {
System.out.println("listener");
result = "called by " + event.getComponent().getClass().getName();
}
public String getSelected() {
return selected;
}
public void setSelected(String selected) {
this.selected = selected;
}
public String getResult() {
return result;
}
}
Tomcat 7.0.12上のMojarra 2.1.1で問題なく動作します。
INFO: Starting Servlet Engine: Apache Tomcat/7.0.12
INFO: Initializing Mojarra 2.1.1 (FCS 20110408) for context '/playground'
パラメータのセッターはすべてのajaxリクエストで呼び出されるため、f:metadata
およびf:viewparam
タグがある場合は注意してください。
Ajax呼び出しを呼び出したときに生成されているエラー/例外がある場合、エラーログを提供できますか?