Opening a Quick Create through JavaScript
In Dynamics 365, we can open Quick Create forms through JavaScript. Through Xrm.Utility, we can call openQuickCreate. This takes the parameters: Xrm.Utility.openQuickCreate(entityLogicalName,createFromEntity,parameters).then(successCallback, errorCallback); From the documentation, we can see the parameters required: Name Type Required Description entityLogicalName String Yes The logical name of the entity to create. createFromEntity Lookup No Designates a record that will provide default values based on mapped attribute values. A lookup object has the following String properties: entityType: … Continue reading Opening a Quick Create through JavaScript