我一直在努力实现这一目标,但无济于事。
试过:
scmWidgetVar.clear();
但没有用,是否有任何开箱即用的javascript功能可以完成这项工作?
答案 0 :(得分:2)
只需清除bean字段与组件相关的值即可。
<p:selectCheckboxMenu value="#{formBean.values}" widgetVar="var" ... />
<p:commandButton actionListener="#{formBean.resetValues}" update="@widgetVar(var)" value="Reset"/>
你的豆子:
...
private List<String> values;
public void resetValues()
{
values.clear();
}
...