DataLoaded event not firing on new Incident?
Content
Hi,
I'm trying to create a new Contact and a new Incident and pre-fill in some of the fields.
I understand how to use the DataLoaded event to get the workspace record I just created, and it works just fine for Contacts.
However when I create a new Incident the DataLoaded event isn't firing for me. Am I missing something? Code samples of both attached.
Version
February 2015 SP2Code Snippet
// This works just fine for Contacts: var rc = _globalContext.AutomationContext.CreateWorkspaceRecord(WorkspaceRecordType.Contact); EventHandler dataLoadedEvent = null; dataLoadedEvent = (sender, e) => {
0