Java 代码从 SQL 查询返回一列,如果该项不为空,则将标题设置为“可用”。
String sppAcronym = results.getString("ACRONYM");
if (sppAcronym != null) {
sp.setFireStudyTitle("Available");
}
JSF 代码为所有非空项创建了一个标记为“可用”的按钮。
<h:column headerClass="columnHeader" footerClass="columnFooter" itemValue="0">
<f:facet name="header">Link to FEIS Fire Studies</f:facet>
<h:commandButton id="btnSearch" value="#{SPP.fireStudyTitle}"
action="#{searchBean.doMagic(SPP.acronym)}"
immediate="true" onchange="submit();"
style="font-weight:bold; font-size:small;"
onclick="javascript:cursor_wait()" class="buttonsFEIS"/>  
</h:column>
我的问题是 JSF 会为空项目制作小的、空的命令按钮。
我怎样才能做到这一点,以便我可以隐藏那些空的命令按钮并只显示非空项目?