Is it possible to reload data on an edit page without reloading the whole page? Let's say I have a button that calls a back-end method that calculates something and updates one of object's field. I would like to see the new value without having to refresh the page.
Like
2 comments
14:08 Oct 24, 2018
Dear Carlos,
Thank you for your question.
Since the logic is executed on the back-end, the page has to be reload for changes to display. However, there is an option to reload the data on the page automatically by adding a method 'this.reloadEntity();' to your custom button handler method. As a result the page will be reloaded automatically by the system and changes will appear.
Best regards,
Dean
14:16 Oct 24, 2018
Dean Parrett,
Ok, thank you. I think that's what I was looking for.
Show all comments