Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法禁用移动按钮并根据条件拖放?如果目标包含 3 个项目,我想禁用从源到目标的移动\选择(反之亦然)?
可能吗?我找不到任何答案。
您可以尝试使用disabled属性 of picklist,它会禁用整个选项列表。您可以通过调用支持 bean 属性,该属性返回根据您的条件计算的布尔值。
disabled
picklist
在你看来
disabled="#{backingBean.targetHasThreeItems}"
和支持豆
public boolean targetHasTreeItems() { // here your code that calculates target item's count }