如何添加确认对话框

时间:2013-10-14 14:48:58

标签: jsf-2

我想在编辑行之前添加确认对话框,或者在任何操作之前如何提示用户确认。 我应该在下面的代码中使用哪个对话框。

<h:commandLink value="EditPage" action="#{countryBean.editCountryByCountryCode(true)}"  class="edit_icon" >
             <f:setPropertyActionListener target="#{countryBean.editCountryId}" value="#{countryLang.countryCode}" />
             </h:commandLink> 

2 个答案:

答案 0 :(得分:21)

一种简单的方法,使用简单的javascript:

<h:commandLink onclick="if (! confirm('Really want to do that?')) return false"
value="EditPage" action="#{countryBean.editCountryByCountryCode(true)}"  class="edit_icon" >
   <f:setPropertyActionListener target="#{countryBean.editCountryId}" value="#{countryLang.countryCode}" />
</h:commandLink> 

答案 1 :(得分:3)

您可以使用Primefaces确认对话框<p:confirm/>来实现此目的。您可以找到示例展示here