gpt4 book ai didi

jsf-2 - 如何添加确认对话框

转载 作者:行者123 更新时间:2023-12-04 09:05:19 24 4
gpt4 key购买 nike

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

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

最佳答案

一种简单的方法,使用简单的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>

关于jsf-2 - 如何添加确认对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19362983/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com