gpt4 book ai didi

java - 无法在弹出的 richfaces 面板中生成 "delete"

转载 作者:行者123 更新时间:2023-11-30 09:20:34 24 4
gpt4 key购买 nike

我正在使用 richfaces 3.3.3 开发简单的应用程序,我想从扩展表中“删除”一个项目

这是我的bean代码

public void  remove(){
System.out.println("suppression effectué" + this.selected);

}

这是我的面板代码

<rich:modalPanel domElementAttachment="form" id="confirmation" autosized="true">
Are you sure you want to delete the row?
<h:form>
<h:commandButton value="Cancel" onclick="#{rich:component('confirmation')}.hide(); return false;" />
<h:commandButton value="Delete" action="#{backGesDS.remove}" />
</h:form>
</rich:modalPanel>

但不幸的是我遇到了这个错误

      javax.faces.FacesException: javax.el.ELException: /gesDS.xhtml @53,172 onclick="#{rich:component('confirmation')}.show();return false": Function 'rich:component' not found

你能帮帮我吗???

最佳答案

根据我对你问题的理解来回答
使用此代码更改 cancel 按钮中的 onclick 代码

onclick="if (!ajaxRequestContainsErrors()) Richfaces.hideModalPanel('confirmation');"

这里你得到的错误是 cancel button 而不是 delete button。
如果可能,将 h:commandButton 更改为 a4j:commandButton 以隐藏模型面板而不刷新页面

关于java - 无法在弹出的 richfaces 面板中生成 "delete",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17337166/

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