I have an implemented plugin developed in visual studio (we are not using plugin registration tool crm 2016). I want to trigger this plugin on page reload. To explain this plugin is fully developped, it loads the contact information to a form onload event. The idea is that if the user modifies the contact inforation in the form contact, he should be able to reload the form which will execute the plugin.
How can i do this ?
Thank you!
This is the actual plugin which is executed on creation:
AddStep(Stages.PreOperation, Messages.Update, Modes.Synchronous, DlcocontractorDefinition.EntityName, nameof(CompleteCoContractorInformation));
AddStep(Stages.PostOperation, Messages.Update, Modes.Synchronous, DlcocontractorDefinition.EntityName, nameof(AssociateCoContractorAddresses));
AddStep(Stages.PostOperation, Messages.Update, Modes.Synchronous, DlcocontractorDefinition.EntityName, nameof(AssociateCoContractorNationalities));
*This post is locked for comments
I have the same question (0)