Previous uses on a V1 page allowed for a page include button to close the parent page modal on complete, but the same exact layout on V2 is not closing the modal.
Is this by design? Or am I missing something?
Best answer by Rob_Hatch
This is by design. In V1 page includes were not namespaced - and this caused some GNARLY bugs when items in the main page collided with items in the page include.
So in V2 the page includes are namespaced - which means you will need to use the Event system to communicate between them.
Publish an event on the Include page when you push the button in the include
and create an action sequence on the parent page that listens to the event to trigger the close modal action.
Then sit back and watch the user satisfaction flow…
This is by design. In V1 page includes were not namespaced - and this caused some GNARLY bugs when items in the main page collided with items in the page include.
So in V2 the page includes are namespaced - which means you will need to use the Event system to communicate between them.
Publish an event on the Include page when you push the button in the include
and create an action sequence on the parent page that listens to the event to trigger the close modal action.
Then sit back and watch the user satisfaction flow…