我想在这种情况下禁用commandLink:
<p:commandLink id="buttonchoix" value="choisir" disabled="#{editCommandController.result < car.stock}" />
但它为我生成了这个错误(用法语):
错误解析/vues_admin/editCommand.xhtml:错误追踪[line:88] La valeur de l'attribut“disabled”associéàuntype d'élément“null”ne doit pas contenirlecaractère'&lt;'
我怎样才能做到这一点?
答案 0 :(得分:2)
使用lt
(小于)代替
<p:commandLink id="buttonchoix" value="choisir" disabled="#{editCommandController.result lt car.stock}" />
另外,请看一下下面的 BalusC 回答Conditionally displaying JSF components