function OnLoad1(executionContext) { Xrm.Page.getAttribute(/nelep_studentapplication/).addOnChange(getQuickViewForm);}function getQuickViewForm(executionContext){var formContext = executionContext.getFormContext();var quickViewControl = formContext.ui.quickForms.get(/QuickviewControl1682435827537/);if (quickViewControl != undefined) { if (quickViewControl.isLoaded()) {// Access the value of the attribute bound to the constituent controlvar CourseInformation = quickViewControl.getControl(0).getAttribute().getValue();var CourseID = CourseInformation[0].id;var CourseName = CourseInformation[0].name;var CourseType = CourseInformation[0].entityType;formContext.getAttribute(/courseinformation/).setValue([{ id: CourseID, name: CourseName, entityType: CourseType }]); // Unit Group return; } else {setTimeout(getQuickViewForm, 1, executionContext); } } else { Xrm.Utility.alertDialog(/No data to display in the quick view control./); return; }}
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... 290,524 Super User 2024 Season 2
Martin Dráb 228,469 Most Valuable Professional
nmaenpaa 101,148