Function doModalAction(pega.u.d.submitModalDlgParam,event); is not working Mozilla but working fine in IEv11 and Chrome
- Our application upgraded from PRPC v6.3 SP1 to PRPC v7.2.
- As a Cross browser compatibility we are checking the functionality in all the browsers
- Calling the submitModalWindow function through Runcscript action in Modal Window, below is the complete function.
- The same function is working fine in IEv11 and Chrome but the same is not working in Mozilla, Please help.
function submitModalWindow(){
var oSafeURL= new SafeURL("Data-Portal.HasErrorMessages",getReqURI());
oSafeURL.put("pzPrimaryPageName","ClaimSearch");
var callback = {
success : function(oResponse){
if(oResponse.responseText == "false"){
bFromSubmit = true;
var c=doModalAction(pega.u.d.submitModalDlgParam, event);
}
if(oResponse.responseText == "true"){
bFromSubmit = false;
pega.u.d.reloadSection(pega.u.d.getSectionByName("KeyAttributes","",""),"",'', false, true, '-1', false);
}
},
failure : function(oResponse){
}
};
pega.util.Connect.asyncRequest('GET',oSafeURL.toURL(),callback);
}
***Updated by moderator: Lochan to update Categories***