I am trying to retrieve All the Javascript events/libraries attached to the form of particular entity from the server side.
I am able to retrieve the all the forms of that particular entity by using query expression
QueryExpression q = new QueryExpression("systemform");
q.ColumnSet = new ColumnSet() { AllColumns = true };
q.Criteria.AddCondition(new ConditionExpression("objecttypecode", ConditionOperator.Equal, "account"));
EntityCollection ec = serviceProxy.RetrieveMultiple(q);
I just need to know the Javascript library attached to OnLoad or OnSave Events in CRM form.