I am trying to take name + service calendar week + service date and concatenate them, then place them into the name field.
Here's my code - I am getting an onload event error, it may very well not be structured properly.
Thanks,
function concatriskcompliancefields_onload()
var Name = Xrm.Page.getAttribute("new_name").getValue();
var ServiceCalWeek = Xrm.Page.getAttribute("new_servicecalendarserviceweek").getValue();
var ServiceDate = Xrm.Page.getAttribute("new_servicedate").getValue();
Xrm.Page.getAttribute("new_name").setValue(Name + ServiceCalWeek + ServiceDate);
Xrm.Page.getAttribute("new_name").setSubmitMode("always");
*This post is locked for comments
I have the same question (0)