开发者

JQuery to show the Primefaces's confirmDialog

开发者 https://www.devze.com 2023-03-06 14:20 出处:网络
How to 开发者_如何学JAVAuse JQuery to show the Primefaces\'s confirmDialog ?The Primefaces dialogs have javascript convenience methods for showing and hiding.

How to 开发者_如何学JAVAuse JQuery to show the Primefaces's confirmDialog ?


The Primefaces dialogs have javascript convenience methods for showing and hiding.

// where dialog is the widgetVar of your Primefaces dialog.
dialog.show();
dialog.hide();

For many of the Primefaces components however you can access the underlying jQuery object by looking for a property jq.

component.jq.removeClass('exampleClass');

Above is an example.

0

精彩评论

暂无评论...
验证码 换一张
取 消