在primefaces选项列表中禁用选择

时间:2012-12-25 08:34:15

标签: primefaces

有没有办法禁用移动按钮并根据条件拖动n drop? 我想禁用move \ select from source to target(反之亦然),以防目标包含3个项目?

有可能吗?我找不到任何答案。

1 个答案:

答案 0 :(得分:0)

您可以尝试使用disabled picklist属性来禁用整个选项列表。 您可以传递一个支持bean属性,该属性返回根据您的条件计算的布尔值。

在你的观点

disabled="#{backingBean.targetHasThreeItems}"

和支持bean

 public boolean targetHasTreeItems() {
    // here your code that calculates target item's count
   }