Hi,
I have below code to open Quick Create Form form for Contact on click of the button in Account form. On the Account list view, while placing the same button, after selecting a record, it doesnt open. Button only works at form level but not at List Level.
Please guide in replacing the code on how to make it work at list level as well.
function openQuickCreate(PrimaryControl)
{
var formContext = PrimaryControl;
var entityFormOptions = {};
var formParameters = {};
entityFormOptions["entityName"] = "contact";
entityFormOptions["useQuickCreateForm"] = true;
entityFormOptions["createFromEntity"] = formContext.data.entity.getEntityReference();
Xrm.Navigation.openForm(entityFormOptions, formParameters).then(
function (success)
{
console.log(success);
},
function (error)
{
console.log(error);
alert();
});
}
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,253 Super User 2024 Season 2
Martin Dráb 230,188 Most Valuable Professional
nmaenpaa 101,156