On a case record I create a meeting using the create button on the subpanel. When the new meeting is saved an advanced workflow process creates a new task related to the case record.
I want the tasks subpanel to refresh when the meeting is added to show the new task when the drawer closes and the user is returned to the case record view. How can this be done?
Here is a possible solution.
I have a module called WContracts with two subpanels: Products and Details.
When a Product is added, deleted or changed there are several logic hooks that add/delete/modify entries in the Details module. And I want the Details subpanel to refresh immediately without reloading the whole page.
When a Product is deleted I also want to refresh the Parent (Contract) to update some calculated fields.
in my WProducts module's SubpanelListView
custom/modules/wcont_WProducts/clients/base/views/subpanel-list/subpanel-list.js
If you want to refresh multiple subpanels you can do so in one go using the link names that relate each of the subpanel modules to the parent
HTH,
FrancescaS