如何使用JQuery显示Primefaces的confirmDialog?
答案 0 :(得分:1)
Primefaces对话框有javascript方便显示和隐藏的方法。
// where dialog is the widgetVar of your Primefaces dialog.
dialog.show();
dialog.hide();
对于许多Primefaces组件,您可以通过查找属性jq来访问底层的jQuery对象。
component.jq.removeClass('exampleClass');
上面是一个例子。