Hi,
It appears that following this UR1 for SP1 update that the code I use to launch custom modal dialogs in CRM Online is no longer working in the Chrome Browser.
Here's the code, which still works in IE but no longer in Chrome. (Version 37.0.2062.120 m)
Any ideas?
/// Launch the Update Probability dialog
function launchUpdateProbabilityDialog()
{
var dialogId = "df1c3969-5173-43ec-a7f7-9187e2864121";
// Load modal
var serverUri = Mscrm.CrmUri.create('/cs/dialog/rundialog.aspx');
var recordId = Xrm.Page.data.entity.getId();
window.showModalDialog(serverUri + "?DialogId=" + dialogId + "&EntityName=opportunity&ObjectId=" + recordId, null, "dialogWidth: 660px; dialogHeight: 650px,resizable=1,status=1,scrollbars=1 ");
// Reload form.
window.location.reload(true);
}
*This post is locked for comments
I have the same question (0)