I have one problem with the inplace tag from JSF price lists
Here is a snippet of code
<h:form > <p:inplace id="ajaxInplace" editor="true"> <p:inputText value="#{productService.instance.productName}"required="true" label="text"/> </p:inplace> </h:form>
after clicking the confirmation button for ajax inplace I want to save the changed data in my database. I have a productService.updateInstance () method to do this. but what can I call this method after making the change?
Thank you and kind
source share