Hello All Experts,
My javascript is not getting loaded in debugger tool.
i have customized the command using ribbon workbench for Close as Won button.
can anybody let me know what is getting wrong in this.
Below is screeshot for command setting.
below is the JavaScript sample code.
//Check Data Availability.
function CheckDataAvailable(PrimaryEntityTypeCode,boolValue)
{
console.log(method called.);
if(1==1)
{
Xrm.Utility.alertDialog("Do you want to Continue Close As Won.",NoTaskCreated());
}
else
{
console.log('Nothing Happens');
}
}
function NoTaskCreated(){
Xrm.Utility.alertDialog("Dialogue Closed");
}
*This post is locked for comments