Primefaces ajax Inplace保存数据

前端之家收集整理的这篇文章主要介绍了Primefaces ajax Inplace保存数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我对JSF Primefaces的inplace标签有一个问题

这是一段代码片段

<h:form >
 <p:inplace id="ajaxInplace" editor="true">  
   <p:inputText value="#{productService.instance.productName}"required="true"     label="text"/>     
 </p:inplace>
</h:form>

在我按下ajax的确认按钮后,我想将更改的数据存储到我的数据库.我有一个方法productService.updateInstance()来做到这一点.但是如何在做出更改后调用方法

谢谢你,亲切的问候

解决方法

使用< p:ajax event =“save”

save and cancel are two provided ajax behaviors events you can use to
hook-in the editing process.

<p:inplace id="ajaxInplace" editor="true">  
   <p:ajax event="save" listener="#{productService.handleSave}" update="someThing" />
   <p:inputText value="#{productService.instance.productName}" required="true"     label="text"/>     
 </p:inplace>

handleSave看起来像这样

public void handleSave() {
    //do something here
}
原文链接:https://www.f2er.com/ajax/240934.html

猜你在找的Ajax相关文章