Monthly Archives: April 2013
Error: Unable to load plug-in Assembly for offline plugin in Dynamics CRM 2011
I am getting weird error “Unable to load plug-in Assembly” for offline plugin in Dynamics CRM 2011. And after downloading log file the error details is as “Public key token af134b872b327f03 is not found in allow list”. I have searched … Continue reading
How to disable a form control in Dynamics CRM 2011 using Javascript
To disable a form control in Dynamics CRM 2011 using Javascript try below code: var control = Xrm.Page.ui.controls.get(“fieldname”);// like new_age control.setDisabled(true);
Write a common plugin for Create/Update/Delete events in Dynamics CRM 2011
If you want to write a common plugin for Create/Update/Delete events in Dynamics CRM 2011 then only you need to take care of “context.InputParameters[“Target”]”. In case of Create/Update event “context.InputParameters[“Target”] is Entity” and in case of Delete event “context.InputParameters[“Target”] is … Continue reading