Have a javascript event calendar. When the user clicks on an event it fires dp.onEventClick to bring up a modal to provide further details from the event (it's read-only so no worries about writing/editing).
I need to enable what's essentially an advanced view containing additional data, so what I'd like to do is put a button/link within the existing modal that when clicked upon will do one of two things (whichever is the least painful). a) update the existing modal with the additional extra data or b) pop up an additional modal on top of the first just containing the additional data.
Is this possible?