Hello Expert,
i am creating an email record using SDK.Jquery. It is working fine in IE, Safari, Mozila but it's not working in CHROME. I took the library from CRM 2011 SDK 5.0.16
Here is my code below. please suggest where i am wrong
SDK.JQuery.createRecord(emailRecord,
"Email",
function (emailRecord) {
//debugger;
alert("Email ID : "+emailRecord.ActivityId);
activityId = emailRecord.ActivityId;
CreateActivityparty(activityId, OwnerId, "systemuser", 1); //set from address
CreateActivityparty(activityId, userId, "contact", 2);//set to address
},
errorHandler
);
Thank you
saroj