Hi!
I want to create a custom textfield in a serviceactivity. When the serviceactivity onloads I would like to have the serviceactivities GUID in that textfield. Does anyone have any idea how I can solve this?
Hi!
I want to create a custom textfield in a serviceactivity. When the serviceactivity onloads I would like to have the serviceactivities GUID in that textfield. Does anyone have any idea how I can solve this?
Sure.
Example: crmForm.all.myguid.DataValue = crmForm.ObjectId;
You might wanna check out the CRM 4.0 SDK.
Hi! Thanks for the answer. I have done what you´ve said andused the following code to get the GUID value...I an error that crmForm.all.myguid.Datavalue is null or not an onject. Can you see in my code what I´ve done wrong? var myguid = crmForm.ObjectId; if(crmForm.all.myguid.DataValue != null) { crmForm.all.myguid.DataValue = crmForm.ObjectId; }