我在 JSF2/PrimeFaces 页面上有两个单选按钮,我需要根据选择启用/禁用 inputText 字段。
<h:form prependId="false">
<p:panelGrid id="notif">
<p:row id="notif1">
<p:column>
<h:outputText value="label" />
</p:column>
<p:column>
<p:selectOneRadio id="radiobuttons" value="#{state.radioStatus}" layout="pageDirection">
<f:selectItem itemLabel="enable" itemValue="enable" />
<f:selectItem itemLabel="disable" itemValue="disable" />
<p:ajax update="date" />
</p:selectOneRadio>
</p:column>
<p:column>
<p:inputText id="date" value="#{state.infoDate}" disabled="#{!state.checkStatus}" >
</p:inputText>
<p:inputText id="test" value="#{state.infoDateTest}">
</p:inputText>
</p:column>
</p:row>
</p:panelGrid>
</h:form>
此外,这一切都在一个选项卡内,但是在检查生成的 html 时没有嵌套表单。这些字段似乎获得了选项卡的 id,但它们似乎是正确的(尝试对 ajax 使用 id notation 'tabView:date' 时不起作用。)
问题是进入页面时,“实际”文本字段默认是禁用的,当单选按钮设置为启用它时应该启用它。当单选按钮状态更新时,我可以看到该事件已在服务器端注册,并且 inputText 字段“可视”启用(默认情况下它被禁用)。但是,该字段在启用后不是“可聚焦的”,因此无法写入。
当我添加“测试”inputText 字段时,它变得更加奇怪,它不会让它与单选按钮有关的自动启用/禁用。在新页面加载时,您可以对其进行写入,但在更改单选按钮状态后,它不再可写(在 ajax 调用之前输入的文本将保留,但不可编辑)。
然而,单选按钮继续工作,并将在服务器端触发事件。
有人可以指出我可能做错了什么,或者这可能是 PrimeFaces 的错误吗?
// 更新就像说的那样,托管 bean 按预期工作,所以我没有看到任何问题,但这里是代码(为了便于阅读,已简化并重命名,因为相关部分取自更大的上下文)。
@ManagedBean(name = "state")
@SessionScoped
public class ExampleBean implements Serializable {
private static final String disable = "disable";
private static final String enable = "enable";
private String text;
private List<TestRow> rows = null;
private TestRow row = null;
private String radioStatus = "enable";
private String infoDate = "";
private String infoDateTest = "";
@PostConstruct
public void initEmpty() {
}
public String getRadioStatus() {
return this.radioStatus;
}
public void setRadioStatus(String radioStatus) {
this.radioStatus = radioStatus;
}
public String getInfoDate() {
return infoDate;
}
public void setInfoDate(String infoDate) {
this.infoDate = infoDate;
}
public String getInfoDateTest() {
return infoDateTest;
}
public void setInfoDateTest(String infoDateTest) {
this.infoDateTest = infoDateTest;
}
public boolean isCheckStatus() {
return this.radioStatus.equalsIgnoreCase(enable) ? true : false;
}
}