> Is there a way to trigger a refresh on a fragment that was loaded by a button click?
Can you target the element using up.reload? `up.reload('.some_selector')`
I believe it should know where it was loaded from via `up-source`, but maybe I'm wrong and Henning can correct me.
> When the layer is closed I need the list to refresh to reflect any changes.
I feel this could be handled via `up-on-accepted` when you start the journey through the layer. Maybe paired with up.reload?
`<a href="/users/1/edit" up-mode="modal" up-on-accepted="up.reload('.user-details')">Edit</a>`
I've only started playing with Unpoly v2 so I'm not sure of all the intricacies yet.