管理対象Beanのプロパティに従ってレンダラー属性を制御するJSFページがあります。
<p:commandLink action="#{smartphoneBean.drillDown(smartphone.ldapuser,smartphone.productGrp)}"
rendered="#{!(smartphone.ldapuser.charAt(0) ge '0' and smartphone.ldapuser.charAt(0) le '9')}" value="#{smartphone.ldapuser}">
コードを実行したら。値が任意の番号で始まるこのcommandLinkは引き続きレンダリングされます。
char値の整数表現を比較することを期待しています。
この問題について何か考えがありますか?