我想检查 arrayList 是否包含 JSF 中的特定元素。
ArrayList 是包含几个值的 nonTradList。sProcessorView 是 Java 类的实例
JSF 页面如下所示 -
<h:commandButton id="p"
value="#{msgs['SP.Pend.Button.Label']}"
type="button"
disabled="#{securityView.readOnlyUser or sPView.readOnly}">
<rich:toolTip style="white-space:nowrap" value="Ctrl-Shft-P" />
<a4j:support event="onclick"
oncomplete="if ((!#{sProcessorView.autoFetchNext}) &&
#{sProcessorView.nonTradList.contains('100')} &&
#{spProcessorView.nonTradList.contains('111')} ) openSimplePop() ;
else openModal();" />
</h:commandButton>
是否已经有任何 EL 或者我必须编写一些自定义标签?
我们也可以从这个 JSF 中调用一个 Java 方法来获取结果吗?
任何帮助都非常感谢