Hello Everyone,
I'm using the following code to open a web resource and update some data based on user activity.
Xrm.Navigation.openWebResource(webResourceModal, windowOptions, data)
function successCallback(returnValue) {
// do stuff
}
Upon closing the modal, I need to return some values to the calling script and reload the page. How do i trigger the successCallback function from the modal ?
Can anybody help me with this ? Thanks in advance.