Using Xrm.Navigation.openForm to Open Quick Create in Dynamics 365
We can use Xrm.Navigation.openForm to open a Quick Create using JavaScript. Let’s say we want to open the Account quick create form on a Contact record in the Unified Client Interface / Unified Interface. Let’s go to a contact record: To simply open the quick create without setting any field values, we can use the code: [sourcecode language=”JavaScript”] var entityFormOptions = {}; entityFormOptions["entityName"] = "account"; entityFormOptions["useQuickCreateForm"] = true; Xrm.Navigation.openForm(entityFormOptions, null).then( function … Continue reading Using Xrm.Navigation.openForm to Open Quick Create in Dynamics 365