我的视图中有一个组件,我想从我的 bean 中更新它。
它只工作一次。如果我按下第二个按钮没有任何反应,但调用了 actionlistener 中的 bean 方法。
我用firebug检查了浏览器日志,没有错误或其他看起来很奇怪的东西。
我的 Bean 在 ViewScope 中。我正在使用primefaces 3.5。
JSFP 页面:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<h:body>
<h:form id="myRootForm">
<p:inputText id="text1" styleClass="myChangeClass" disabled="true" />
</h:form>
<h:form>
<p:commandButton value="Activate Insert"
actionListener="#{controller.activate()}" update=":myRootForm" />
<p:commandButton value="Deactivate"
actionListener="#{controller.resetFields()}" update=":myRootForm" />
</h:form>
</h:body>
</html>
这是 EJB 代码:
import javax.faces.component.UIViewRoot;
import javax.faces.component.html.HtmlInputText;
import javax.faces.context.FacesContext;
import org.apache.myfaces.extensions.cdi.core.api.scope.conversation.ViewAccessScoped;
import java.io.Serializable;
import javax.inject.Named;
@ViewAccessScoped
@Named("controller")
public class Controller {
private UIViewRoot viewRoot = FacesContext.getCurrentInstance().getViewRoot();
public void activate() {
HtmlInputText text = (HtmlInputText)
viewRoot.findComponent("myRootForm:text1");
text.setDisabled(false);
RequestContext.getCurrentInstance().update(text.getClientId());
}
public void deactivate() {
HtmlInputText text = (HtmlInputText)
viewRoot.findComponent("myRootForm:text1");
text.setDisabled(true);
RequestContext.getCurrentInstance().update(text.getClientId());
}
}
** 更新:
我把这个例子写得更好一些。当我使用“RequestScope”时它正在工作,但我需要 viewScope 来保存我的信息。
为了更好地理解我为什么要这样做:我有几个输入组件,我想在几种模式下可用。模式在 StyleClass(即 myChangeClass)中指示。当我按下按钮时,我会浏览表单的组件树并搜索样式类并激活按钮。我不想通过在我的 bean 中为每个组件保留一个属性来做到这一点。