hi
One of my business scenario is calling a dialog when you click on lead disqualify button.it is successfully implemented by using window.open
but my Client don't satisfy with that he want to use oob's methods
so if i trying implement with "Xrm.Internal.openDialog" i was getting an error message in MSCRM.
here is my code:
var URL = Xrm.Page.context.getClientUrl() + "/cs/dialog/rundialog.aspx?DialogId=%7b" + dialogId + "%7d&EntityName=" + entityName + "&ObjectId=" + objectId;
var DialogOption = new Xrm.DialogOptions;
DialogOption.width = 500; DialogOption.height = 420;
Xrm.Internal.openDialog(URL,
DialogOption,
null, null,
CallbackFunction);
function CallbackFunction(returnValue) {
}
can any please give an advise.......
i am using MS CRM 2015 online
Thanks in advance
*This post is locked for comments