Reload datadetail on Modal close

Is there a way of not only refreshing the dynamic table, but also the datadetail section with the updated data on closing of the modal?

Can you proviya little more detailed explanation of what are you trying to achieve?

I have a page with a list and a datadetail region


From the datadetail region I can open a modal to edit the content.

On Success the modal will close, the tablelist on the left is refreshed and the form is cleared.
But I also would like to refresh the datadetail with the updated information.

Where is the data detail region getting its content from?

From the datadetail in app connect

So where is the data detail getting its data from? Is it a server connect or some other source?

It gets its values from the table row on the left
<tbody is="dmx-repeat" dmx-generator="bs4table" dmx-bind:repeat="arranglist.data.qry_arrangement" id="tableRepeat1"> <tr dmx-on:click="ddarrangement.select(id)" dmx-class:bg-warning="(id == ddarrangement.data.id)"> <td dmx-text="titel"></td> </tr> </tbody>

At it appears I have to add nothing to get the updated information.
The modal form on succes is now: Notifies1/succes and mdlarrangedit.hide
The modal itself is now: OnHide: frmedit.reset and arranglist.load.
And all of the sudden it does what I want it to do.