我正在使用 jsf PrimeFaces (v 3.5.0) 库。delete
选择javascript 确认框OK
按钮后,以下代码不会执行。
<p:commandLink id="deletePGLinkId"
action="#{PresetGroupMgmtBean.delete}"
onclick="return confirm('Preset Group will be removed. Are you sure you want to continue?');"
update=":pmForm:presetPanel :pmForm:messagePanel">
<f:param value="#{item.value.ID}" name="deleteID"></f:param>
<h:graphicImage alt="Delete Image" style="border: none" value="./images/x.png" />
</p:commandLink>
我想避免使用 PrimeFaces ConfirmDialog
,因为我有这么多的确认,并且为每个都写一个需要时间ConfirmDialog
。Javascript 框看起来很简单,但它不起作用。
为什么不执行delete
?