Reload data of detail on the edit page by JS

Hi all,

       I want to use javascript function to reload data of a detail on the edit page. For example:

  • I open a contact to edit data
  • In the contact editing page, there is activities detail
  • When I run a business process, I want to reload activities detail when that business process finishes (use message to detect)

Thank you.

Like 0

Like

3 comments
Best reply

Dear Toan,

You can use this.updateDetail() method. For example:

 

this.updateDetail({

                        detail: "ContactCommunication"

                    });

 

Regards,

Dean

I think a call to this.reloadDetails() from the edit page should do this.

Dear Toan,

You can use this.updateDetail() method. For example:

 

this.updateDetail({

                        detail: "ContactCommunication"

                    });

 

Regards,

Dean

Dean Parrett,

Thank you Dean. I can call this.updateDetail("ContactCommunication");

Show all comments