是否可以在客户端更改 JSF selectOneButton 组件的选定项?Primefaces 是否已经提供了一种方便的方法来做到这一点?
在组件上设置 'widgetVar' 属性时,对应的 JS 对象有一个方法 'select(a)' 似乎会停用以前激活的按钮,然后激活由参数 'a' 给出的新按钮:
select: function(a)
{
this.buttons.filter(".ui-state-active").removeClass("ui-state-active ui-state-hover").children(":radio").removeAttr("checked");
a.addClass("ui-state-active").children(":radio").attr("checked", "checked").change()
}
但我不知道将什么设置为参数'a'。这是正确的方法吗?