条件禁用commandLink jsf2 PrimeFaces

时间:2012-08-31 07:00:36

标签: parsing jsf-2 primefaces

我想在这种情况下禁用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;'

我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:2)

使用lt(小于)代替

<p:commandLink id="buttonchoix" value="choisir" disabled="#{editCommandController.result lt car.stock}" />

另外,请看一下下面的 BalusC 回答Conditionally displaying JSF components