1

如果输入文本中没有类似这样的值,我想禁用该按钮:

<p:autoComplete  id="ac" value="#{bean.selectedNet}"
    completeMethod="#{bean.complete}"
    minQueryLength="0" size="3">
    <p:ajax event="itemSelect" update="genButton" listener="#{bean.handleNetChange}"/>
    <p:ajax process="@this" update="genButton" />
</p:autoComplete> 

<p:selectManyCheckbox id="en" layout="pageDirection" value="#{bean.selectedEntity}"> 
    <f:selectItems value="#{bean.entityList}"/>
    <p:ajax update="genButton" listener="#{bean.handleNetChange}"/>
</p:selectManyCheckbox>

<p:commandButton id="genButton" value="Generate Files"
    widgetVar="startButton1"
    disabled="#{bean.disableButton}"
    actionListener="#{bean.generate}"
    onclick="PrimeFaces.monitorDownload(showStatus, hideStatus)"
    ajax="false">
    <p:fileDownload value="#{bean.streamedContent}"/>
</p:commandButton>

方法:

public void handleNetChange() {
    if (!StringUtils.isBlank(selectedNet) && !selectedEntity.isEmpty()) {
        disableButton = false;
    } else {
        disableButton = true;
    }
}

public List<String> complete(String query) {
    List<String> results = new ArrayList<String>();
    if (StringUtils.isBlank(query)) {
        selectedNet = query;
        disableButton = true;
    } else {
        ....
    }
    return results;
}

虽然 itemSelect 事件运行良好,但第二个事件却没有。我可以在 bean 中看到对完整方法的调用,但按钮未更新

有什么建议吗?

4

2 回答 2

2

似乎您不能仅使用<p:ajax process="@this" update="genButton" />. 我会尝试button直接从bean.

由于您使用的是 primefaces,您可以使用RequestContext; 尝试将此行添加到您的complete方法中:

RequestContext.getCurrentInstance().addPartialUpdateTarget("genButton");

如果您不使用prependId="false"wrapping form,则可能需要指定完整路径,button例如:

RequestContext.getCurrentInstance().addPartialUpdateTarget("fooForm:genButton");
于 2012-09-21T20:37:01.737 回答
0

如果要使用禁用,请不要在命令按钮上使用渲染属性。

<p:commandButton id="buttonId"  
actionListener="#{controller.function}"
value="#{controller.label}" 
disabled="#{controller.disableButton}" rendered="#{controller.renderButton}"  />

删除渲染后,按钮被禁用,没有任何问题。

于 2013-02-07T09:16:07.563 回答